diff --git a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/SparkAtomicActionJob.java b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/SparkAtomicActionJob.java index ee755d881..a32d04e1f 100644 --- a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/SparkAtomicActionJob.java +++ b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/SparkAtomicActionJob.java @@ -125,9 +125,7 @@ public class SparkAtomicActionJob { Project pp = new Project(); pp .setId( - createOpenaireId( - ModelSupport.entityIdPrefix.get("project"), - "corda__h2020", csvProject.getId())); + csvProject.getId()); pp.setH2020topiccode(csvProject.getTopics()); H2020Programme pm = new H2020Programme(); H2020Classification h2020classification = new H2020Classification(); @@ -145,10 +143,15 @@ public class SparkAtomicActionJob { .filter(Objects::nonNull); aaproject - .joinWith(topic, aaproject.col("id").equalTo(topic.col("projectId")), "left") + .joinWith(topic, aaproject.col("id").equalTo(topic.col("projectID")), "left") .map((MapFunction, Project>) p -> { Optional op = Optional.ofNullable(p._2()); Project rp = p._1(); + rp + .setId( + createOpenaireId( + ModelSupport.entityIdPrefix.get("project"), + "corda__h2020", rp.getId())); op.ifPresent(excelTopic -> rp.setH2020topicdescription(excelTopic.getTitle())); return rp; }, Encoders.bean(Project.class)) diff --git a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/EXCELParser.java b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/EXCELParser.java index a520176f4..139f7e74a 100644 --- a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/EXCELParser.java +++ b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/EXCELParser.java @@ -22,6 +22,7 @@ import eu.dnetlib.dhp.actionmanager.project.utils.model.EXCELTopic; /** * Reads a generic excel file and maps it into classes that mirror its schema */ +@Deprecated public class EXCELParser { public List parse(InputStream file, String classForName, String sheetName) diff --git a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadProjects.java b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadProjects.java index b24c4806a..904837e3d 100644 --- a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadProjects.java +++ b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadProjects.java @@ -61,7 +61,7 @@ public class ReadProjects implements Serializable { readProjects(inputPath, outputPath, fs); } - private static void readProjects(String inputFile, String workingPath, FileSystem fs) throws IOException { + public static void readProjects(String inputFile, String workingPath, FileSystem fs) throws IOException { Path hdfsreadpath = new Path(inputFile); FSDataInputStream inputStream = fs.open(hdfsreadpath); diff --git a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadTopics.java b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadTopics.java index 86ec22207..e0e34be31 100644 --- a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadTopics.java +++ b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/ReadTopics.java @@ -63,7 +63,7 @@ public class ReadTopics implements Serializable { readTopics(inputPath, outputPath, fs); } - private static void readTopics(String inputFile, String workingPath, FileSystem fs) throws IOException { + public static void readTopics(String inputFile, String workingPath, FileSystem fs) throws IOException { Path hdfsreadpath = new Path(inputFile); FSDataInputStream inputStream = fs.open(hdfsreadpath); diff --git a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/model/EXCELTopic.java b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/model/EXCELTopic.java index f4d748ff7..1a955b828 100644 --- a/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/model/EXCELTopic.java +++ b/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/project/utils/model/EXCELTopic.java @@ -6,6 +6,7 @@ import java.io.Serializable; /** * the model class for the topic excel file */ +@Deprecated public class EXCELTopic implements Serializable { private String rcn; private String language; diff --git a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/actionmanager/project/oozie_app/workflow.xml b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/actionmanager/project/oozie_app/workflow.xml index 21f9b23c5..fe80bc590 100644 --- a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/actionmanager/project/oozie_app/workflow.xml +++ b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/actionmanager/project/oozie_app/workflow.xml @@ -1,26 +1,9 @@ - - - programmeFileURL - noneed - the url where to get the programme file - - - - topicFileURL - noneed - the url where to get the topic file - outputPath path where to store the action set - - sheetName - noneed - the name of the sheet to read - @@ -41,7 +24,6 @@ - diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/DownloadCsvTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/DownloadCsvTest.java deleted file mode 100644 index 647ffdda7..000000000 --- a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/DownloadCsvTest.java +++ /dev/null @@ -1,203 +0,0 @@ - -package eu.dnetlib.dhp.actionmanager.project; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; - -import java.io.*; -import java.nio.file.Files; - -import org.apache.commons.io.FileUtils; -import org.apache.hadoop.conf.Configuration; -import org.apache.hadoop.fs.FileSystem; -import org.apache.hadoop.fs.LocalFileSystem; -import org.apache.hadoop.fs.Path; -import org.junit.jupiter.api.*; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import eu.dnetlib.dhp.actionmanager.project.utils.model.CSVProgramme; -import eu.dnetlib.dhp.actionmanager.project.utils.model.CSVProject; -import eu.dnetlib.dhp.common.collection.CollectorException; -import eu.dnetlib.dhp.common.collection.GetCSV; -import eu.dnetlib.dhp.common.collection.HttpConnector2; - -public class DownloadCsvTest { - - private static String workingDir; - - private static LocalFileSystem fs; - - @BeforeAll - public static void beforeAll() throws IOException { - workingDir = Files - .createTempDirectory(DownloadCsvTest.class.getSimpleName()) - .toString(); - - fs = FileSystem.getLocal(new Configuration()); - } - - @Disabled - @Test - void getProgrammeFileTest() throws Exception { - - String fileURL = "https://cordis.europa.eu/data/reference/cordisref-h2020programmes.csv"; - - GetCSV - .getCsv( - fs, new BufferedReader( - new InputStreamReader(new HttpConnector2().getInputSourceAsStream(fileURL))), - workingDir + "/programme", - CSVProgramme.class.getName(), ';'); - - BufferedReader in = new BufferedReader(new InputStreamReader(fs.open(new Path(workingDir + "/programme")))); - - String line; - int count = 0; - while ((line = in.readLine()) != null) { - CSVProgramme csvp = new ObjectMapper().readValue(line, CSVProgramme.class); - if (count == 0) { - assertTrue(csvp.getCode().equals("H2020-EU.5.f.")); - assertTrue( - csvp - .getTitle() - .startsWith( - "Develop the governance for the advancement of responsible research and innovation by all stakeholders")); - assertTrue(csvp.getTitle().endsWith("promote an ethics framework for research and innovation")); - assertTrue(csvp.getShortTitle().equals("")); - assertTrue(csvp.getLanguage().equals("en")); - } - if (count == 28) { - assertTrue(csvp.getCode().equals("H2020-EU.3.5.4.")); - assertTrue( - csvp - .getTitle() - .equals( - "Grundlagen für den Übergang zu einer umweltfreundlichen Wirtschaft und Gesellschaft durch Öko-Innovation")); - assertTrue(csvp.getShortTitle().equals("A green economy and society through eco-innovation")); - assertTrue(csvp.getLanguage().equals("de")); - } - if (count == 229) { - assertTrue(csvp.getCode().equals("H2020-EU.3.2.")); - assertTrue( - csvp - .getTitle() - .equals( - "SOCIETAL CHALLENGES - Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy")); - assertTrue( - csvp.getShortTitle().equals("Food, agriculture, forestry, marine research and bioeconomy")); - assertTrue(csvp.getLanguage().equals("en")); - } - assertTrue(csvp.getCode() != null); - assertTrue(csvp.getCode().startsWith("H2020")); - count += 1; - } - - assertEquals(767, count); - } - - @Disabled - @Test - void getProjectFileTest() throws IOException, CollectorException, ClassNotFoundException { - String fileURL = "https://cordis.europa.eu/data/cordis-h2020projects.csv"; - - GetCSV - .getCsv( - fs, - new BufferedReader(new InputStreamReader(new HttpConnector2().getInputSourceAsStream(fileURL))), - workingDir + "/projects", - CSVProject.class.getName(), ';'); - - BufferedReader in = new BufferedReader(new InputStreamReader(fs.open(new Path(workingDir + "/projects")))); - - String line; - int count = 0; - while ((line = in.readLine()) != null) { - CSVProject csvp = new ObjectMapper().readValue(line, CSVProject.class); - if (count == 0) { - assertTrue(csvp.getId().equals("771736")); - assertTrue(csvp.getProgramme().equals("H2020-EU.1.1.")); - assertTrue(csvp.getTopics().equals("ERC-2017-COG")); - - } - if (count == 22882) { - assertTrue(csvp.getId().equals("752903")); - assertTrue(csvp.getProgramme().equals("H2020-EU.1.3.2.")); - assertTrue(csvp.getTopics().equals("MSCA-IF-2016")); - } - if (count == 223023) { - assertTrue(csvp.getId().equals("861952")); - assertTrue(csvp.getProgramme().equals("H2020-EU.4.e.")); - assertTrue(csvp.getTopics().equals("SGA-SEWP-COST-2019")); - } - assertTrue(csvp.getId() != null); - assertTrue(csvp.getProgramme().startsWith("H2020")); - count += 1; - } - - assertEquals(34957, count); - } - - @AfterAll - public static void cleanup() { - FileUtils.deleteQuietly(new File(workingDir)); - } - - @Test - void getLocalProgrammeFileTest() throws Exception { - - GetCSV - .getCsv( - fs, new BufferedReader( - new FileReader( - getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/h2020_programme.csv").getPath())), - workingDir + "/programme", - CSVProgramme.class.getName(), ';'); - - BufferedReader in = new BufferedReader(new InputStreamReader(fs.open(new Path(workingDir + "/programme")))); - - String line; - int count = 0; - while ((line = in.readLine()) != null) { - CSVProgramme csvp = new ObjectMapper().readValue(line, CSVProgramme.class); - if (count == 528) { - assertEquals("H2020-EU.5.f.", csvp.getCode()); - assertTrue( - csvp - .getTitle() - .startsWith( - "Develop the governance for the advancement of responsible research and innovation by all stakeholders")); - assertTrue(csvp.getTitle().endsWith("promote an ethics framework for research and innovation")); - assertTrue(csvp.getShortTitle().equals("")); - assertTrue(csvp.getLanguage().equals("en")); - } - if (count == 11) { - assertEquals("H2020-EU.3.5.4.", csvp.getCode()); - assertTrue( - csvp - .getTitle() - .equals( - "Grundlagen für den Übergang zu einer umweltfreundlichen Wirtschaft und Gesellschaft durch Öko-Innovation")); - assertTrue(csvp.getShortTitle().equals("A green economy and society through eco-innovation")); - assertTrue(csvp.getLanguage().equals("de")); - } - if (count == 34) { - assertTrue(csvp.getCode().equals("H2020-EU.3.2.")); - assertTrue( - csvp - .getTitle() - .equals( - "SOCIETAL CHALLENGES - Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy")); - assertTrue( - csvp.getShortTitle().equals("Food, agriculture, forestry, marine research and bioeconomy")); - assertTrue(csvp.getLanguage().equals("en")); - } - assertTrue(csvp.getCode() != null); - assertTrue(csvp.getCode().startsWith("H2020")); - count += 1; - } - - assertEquals(769, count); - } - -} diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/EXCELParserTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/EXCELParserTest.java index d77df4088..bc67f87a5 100644 --- a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/EXCELParserTest.java +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/EXCELParserTest.java @@ -18,6 +18,7 @@ import eu.dnetlib.dhp.actionmanager.project.utils.EXCELParser; import eu.dnetlib.dhp.common.collection.CollectorException; import eu.dnetlib.dhp.common.collection.HttpConnector2; +@Deprecated @Disabled public class EXCELParserTest { diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareH2020ProgrammeTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareH2020ProgrammeTest.java index 680872126..a5d7a8fb9 100644 --- a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareH2020ProgrammeTest.java +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareH2020ProgrammeTest.java @@ -73,7 +73,7 @@ public class PrepareH2020ProgrammeTest { "-isSparkSessionManaged", Boolean.FALSE.toString(), "-programmePath", - getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/whole_programme.json.gz").getPath(), + getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/h2020_programme.json.gz").getPath(), "-outputPath", workingDir.toString() + "/preparedProgramme" }); @@ -84,7 +84,7 @@ public class PrepareH2020ProgrammeTest { .textFile(workingDir.toString() + "/preparedProgramme") .map(item -> OBJECT_MAPPER.readValue(item, CSVProgramme.class)); - Assertions.assertEquals(277, tmp.count()); + Assertions.assertEquals(279, tmp.count()); Dataset verificationDataset = spark.createDataset(tmp.rdd(), Encoders.bean(CSVProgramme.class)); @@ -92,7 +92,7 @@ public class PrepareH2020ProgrammeTest { Assertions.assertEquals(0, verificationDataset.filter("classification = ''").count()); - // tmp.foreach(csvProgramme -> System.out.println(OBJECT_MAPPER.writeValueAsString(csvProgramme))); + tmp.foreach(csvProgramme -> System.out.println(OBJECT_MAPPER.writeValueAsString(csvProgramme))); Assertions .assertEquals( diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareProjectTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareProjectTest.java index 33653917f..3dadef62d 100644 --- a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareProjectTest.java +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/PrepareProjectTest.java @@ -79,7 +79,7 @@ public class PrepareProjectTest { "-isSparkSessionManaged", Boolean.FALSE.toString(), "-projectPath", - getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/projects.json").getPath(), + getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/projects_nld.json.gz").getPath(), "-outputPath", workingDir.toString() + "/preparedProjects", "-dbProjectPath", @@ -99,43 +99,12 @@ public class PrepareProjectTest { Assertions.assertEquals(0, verificationDataset.filter("length(id) = 0").count()); Assertions.assertEquals(0, verificationDataset.filter("length(programme) = 0").count()); - } + Assertions.assertEquals(0, verificationDataset.filter("length(topics) = 0").count()); - @Test - void readJsonNotMultiline() throws IOException { + CSVProject project = tmp.filter(p -> p.getId().equals("886828")).first(); - String projects = IOUtils - .toString( - PrepareProjectTest.class - .getResourceAsStream(("/eu/dnetlib/dhp/actionmanager/project/projects.json"))); - ArrayList a = OBJECT_MAPPER.readValue(projects, new TypeReference>() { - }); - - a.forEach(p -> { - try { - OBJECT_MAPPER.writeValueAsString(p); - } catch (JsonProcessingException e) { - e.printStackTrace(); - } - }); - JavaRDD b = new JavaSparkContext(spark.sparkContext()).parallelize(a); - -// System.out.println("pr"); -// Dataset prova = spark -// .read() -// .textFile(inputPath) -// .map((MapFunction) value -> OBJECT_MAPPER.readValue(value, new TypeReference>() { -// }), Encoders.bean(Project.class)); - -// prova.foreach( -// (ForeachFunction) p -> System.out.println(OBJECT_MAPPER.writeValueAsString(p))); - -// objectMapper.readValue(jsonArray, new TypeReference>() {}) -// Dataset p = readPath(spark, inputPath, Projects.class) -// .flatMap((FlatMapFunction) ps -> ps.getProjects().iterator(), Encoders.bean(Project.class -// )); -//import com.fasterxml.jackson.core.type.TypeReference; -// System.out.println(p.count()); + Assertions.assertEquals("H2020-EU.2.3.", project.getProgramme()); + Assertions.assertEquals("EIC-SMEInst-2018-2020", project.getTopics()); } } diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProgrammeTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProgrammeTest.java new file mode 100644 index 000000000..73b8c238a --- /dev/null +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProgrammeTest.java @@ -0,0 +1,103 @@ + +package eu.dnetlib.dhp.actionmanager.project; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import java.io.*; +import java.nio.file.Files; + +import org.apache.commons.io.FileUtils; +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.FileSystem; +import org.apache.hadoop.fs.LocalFileSystem; +import org.apache.hadoop.fs.Path; +import org.junit.jupiter.api.*; + +import com.fasterxml.jackson.databind.ObjectMapper; + +import eu.dnetlib.dhp.actionmanager.project.utils.model.CSVProgramme; +import eu.dnetlib.dhp.actionmanager.project.utils.model.CSVProject; +import eu.dnetlib.dhp.common.collection.CollectorException; +import eu.dnetlib.dhp.common.collection.GetCSV; +import eu.dnetlib.dhp.common.collection.HttpConnector2; + +public class ReadProgrammeTest { + + private static String workingDir; + + private static LocalFileSystem fs; + + @BeforeAll + public static void beforeAll() throws IOException { + workingDir = Files + .createTempDirectory(ReadProgrammeTest.class.getSimpleName()) + .toString(); + + fs = FileSystem.getLocal(new Configuration()); + } + + @AfterAll + public static void cleanup() { + FileUtils.deleteQuietly(new File(workingDir)); + } + + @Test + void getLocalProgrammeFileTest() throws Exception { + + GetCSV + .getCsv( + fs, new BufferedReader( + new FileReader( + getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/h2020_programme.csv").getPath())), + workingDir + "/programme", + CSVProgramme.class.getName(), ';'); + + BufferedReader in = new BufferedReader(new InputStreamReader(fs.open(new Path(workingDir + "/programme")))); + + String line; + int count = 0; + ObjectMapper OBJECT_MAPPER = new ObjectMapper(); + while ((line = in.readLine()) != null) { + CSVProgramme csvp = OBJECT_MAPPER.readValue(line, CSVProgramme.class); + if (count == 528) { + assertEquals("H2020-EU.5.f.", csvp.getCode()); + assertTrue( + csvp + .getTitle() + .startsWith( + "Develop the governance for the advancement of responsible research and innovation by all stakeholders")); + assertTrue(csvp.getTitle().endsWith("promote an ethics framework for research and innovation")); + assertTrue(csvp.getShortTitle().equals("")); + assertTrue(csvp.getLanguage().equals("en")); + } + if (count == 11) { + assertEquals("H2020-EU.3.5.4.", csvp.getCode()); + assertTrue( + csvp + .getTitle() + .equals( + "Grundlagen für den Übergang zu einer umweltfreundlichen Wirtschaft und Gesellschaft durch Öko-Innovation")); + assertTrue(csvp.getShortTitle().equals("A green economy and society through eco-innovation")); + assertTrue(csvp.getLanguage().equals("de")); + } + if (count == 34) { + assertTrue(csvp.getCode().equals("H2020-EU.3.2.")); + assertTrue( + csvp + .getTitle() + .equals( + "SOCIETAL CHALLENGES - Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy")); + assertTrue( + csvp.getShortTitle().equals("Food, agriculture, forestry, marine research and bioeconomy")); + assertTrue(csvp.getLanguage().equals("en")); + } + assertTrue(csvp.getCode() != null); + assertTrue(csvp.getCode().startsWith("H2020")); + count += 1; + } + + assertEquals(769, count); + } + +} diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProjectsTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProjectsTest.java new file mode 100644 index 000000000..768b74710 --- /dev/null +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadProjectsTest.java @@ -0,0 +1,104 @@ + +package eu.dnetlib.dhp.actionmanager.project; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; + +import org.apache.commons.io.FileUtils; +import org.apache.commons.io.IOUtils; +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.FileSystem; +import org.apache.hadoop.fs.LocalFileSystem; +import org.apache.spark.SparkConf; +import org.apache.spark.api.java.JavaRDD; +import org.apache.spark.api.java.JavaSparkContext; +import org.apache.spark.sql.SparkSession; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; + +import eu.dnetlib.dhp.actionmanager.project.utils.ReadProjects; +import eu.dnetlib.dhp.actionmanager.project.utils.model.CSVProject; +import eu.dnetlib.dhp.actionmanager.project.utils.model.Project; + +/** + * @author miriam.baglioni + * @Date 01/03/23 + */ +public class ReadProjectsTest { + private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper(); + + private static Path workingDir; + + private static LocalFileSystem fs; + + private static SparkSession spark; + + private static final Logger log = LoggerFactory + .getLogger(ReadProjectsTest.class); + + @BeforeAll + public static void beforeAll() throws IOException { + workingDir = Files + .createTempDirectory(ReadProjectsTest.class.getSimpleName()); + + fs = FileSystem.getLocal(new Configuration()); + SparkConf conf = new SparkConf(); + conf.setAppName(PrepareProjectTest.class.getSimpleName()); + + conf.setMaster("local[*]"); + conf.set("spark.driver.host", "localhost"); + conf.set("hive.metastore.local", "true"); + conf.set("spark.ui.enabled", "false"); + conf.set("spark.sql.warehouse.dir", workingDir.toString()); + conf.set("hive.metastore.warehouse.dir", workingDir.resolve("warehouse").toString()); + + spark = SparkSession + .builder() + .appName(PrepareProjectTest.class.getSimpleName()) + .config(conf) + .getOrCreate(); + } + + @AfterAll + public static void afterAll() throws IOException { + FileUtils.deleteDirectory(workingDir.toFile()); + spark.stop(); + } + + @Test + void readProjects() throws IOException { + String projects = getClass() + .getResource("/eu/dnetlib/dhp/actionmanager/project/projects.json") + .getPath(); + ReadProjects.readProjects(projects, workingDir.toString() + "/projects", fs); + + final JavaSparkContext sc = new JavaSparkContext(spark.sparkContext()); + + JavaRDD tmp = sc + .textFile(workingDir.toString() + "/projects") + .map(item -> OBJECT_MAPPER.readValue(item, Project.class)); + + Assertions.assertEquals(19, tmp.count()); + + Project project = tmp.filter(p -> p.getAcronym().equals("GiSTDS")).first(); + + Assertions.assertEquals("2022-10-08 18:28:27", project.getContentUpdateDate()); + Assertions.assertEquals("894593", project.getId()); + Assertions.assertEquals("H2020-EU.1.3.", project.getLegalBasis()); + Assertions.assertEquals("MSCA-IF-2019", project.getTopics()); + + tmp.foreach(p -> System.out.println(OBJECT_MAPPER.writeValueAsString(p))); + + } +} diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadTopicTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadTopicTest.java new file mode 100644 index 000000000..c525d4c44 --- /dev/null +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/ReadTopicTest.java @@ -0,0 +1,101 @@ + +package eu.dnetlib.dhp.actionmanager.project; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +import org.apache.commons.io.FileUtils; +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.FileSystem; +import org.apache.hadoop.fs.LocalFileSystem; +import org.apache.spark.SparkConf; +import org.apache.spark.api.java.JavaRDD; +import org.apache.spark.api.java.JavaSparkContext; +import org.apache.spark.sql.SparkSession; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.fasterxml.jackson.databind.ObjectMapper; + +import eu.dnetlib.dhp.actionmanager.project.utils.ReadProjects; +import eu.dnetlib.dhp.actionmanager.project.utils.ReadTopics; +import eu.dnetlib.dhp.actionmanager.project.utils.model.JsonTopic; +import eu.dnetlib.dhp.actionmanager.project.utils.model.Project; + +/** + +* @author miriam.baglioni + +* @Date 01/03/23 + +*/ +public class ReadTopicTest { + private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper(); + + private static Path workingDir; + + private static LocalFileSystem fs; + + private static SparkSession spark; + + private static final Logger log = LoggerFactory + .getLogger(ReadTopicTest.class); + + @BeforeAll + public static void beforeAll() throws IOException { + workingDir = Files + .createTempDirectory(ReadTopicTest.class.getSimpleName()); + + fs = FileSystem.getLocal(new Configuration()); + SparkConf conf = new SparkConf(); + conf.setAppName(PrepareProjectTest.class.getSimpleName()); + + conf.setMaster("local[*]"); + conf.set("spark.driver.host", "localhost"); + conf.set("hive.metastore.local", "true"); + conf.set("spark.ui.enabled", "false"); + conf.set("spark.sql.warehouse.dir", workingDir.toString()); + conf.set("hive.metastore.warehouse.dir", workingDir.resolve("warehouse").toString()); + + spark = SparkSession + .builder() + .appName(PrepareProjectTest.class.getSimpleName()) + .config(conf) + .getOrCreate(); + } + + @AfterAll + public static void afterAll() throws IOException { + FileUtils.deleteDirectory(workingDir.toFile()); + spark.stop(); + } + + @Test + void readTopics() throws IOException { + String topics = getClass() + .getResource("/eu/dnetlib/dhp/actionmanager/project/topics.json") + .getPath(); + ReadTopics.readTopics(topics, workingDir.toString() + "/topics", fs); + + final JavaSparkContext sc = new JavaSparkContext(spark.sparkContext()); + + JavaRDD tmp = sc + .textFile(workingDir.toString() + "/topics") + .map(item -> OBJECT_MAPPER.readValue(item, JsonTopic.class)); + + // Assertions.assertEquals(16, tmp.count()); + + JsonTopic topic = tmp.filter(t -> t.getProjectID().equals("886988")).first(); + + Assertions.assertEquals("Individual Fellowships", topic.getTitle()); + Assertions.assertEquals("MSCA-IF-2019", topic.getTopic()); + + tmp.foreach(p -> System.out.println(OBJECT_MAPPER.writeValueAsString(p))); + + } +} diff --git a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/SparkUpdateProjectTest.java b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/SparkUpdateProjectTest.java index 58365e026..bdc17546d 100644 --- a/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/SparkUpdateProjectTest.java +++ b/dhp-workflows/dhp-aggregation/src/test/java/eu/dnetlib/dhp/actionmanager/project/SparkUpdateProjectTest.java @@ -11,6 +11,7 @@ import org.apache.hadoop.io.Text; import org.apache.spark.SparkConf; import org.apache.spark.api.java.JavaRDD; import org.apache.spark.api.java.JavaSparkContext; +import org.apache.spark.api.java.function.ForeachFunction; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Encoders; import org.apache.spark.sql.Row; @@ -78,12 +79,12 @@ public class SparkUpdateProjectTest { "-programmePath", getClass() .getResource( - "/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json") + "/eu/dnetlib/dhp/actionmanager/project/prepared_h2020_programme.json.gz") .getPath(), "-projectPath", - getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json").getPath(), + getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json.gz").getPath(), "-topicPath", - getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/topic.json.gz").getPath(), + getClass().getResource("/eu/dnetlib/dhp/actionmanager/project/topics_nld.json.gz").getPath(), "-outputPath", workingDir.toString() + "/actionSet" }); @@ -266,6 +267,7 @@ public class SparkUpdateProjectTest { .get(1) .getString(0) .equals("H2020-EU.2.1.4.")); + Assertions .assertTrue( execverification diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_programme.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_programme.json.gz new file mode 100644 index 000000000..826d7cdfe Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_programme.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_topic.xlsx b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_topic.xlsx deleted file mode 100644 index 82ab1fe09..000000000 Binary files a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/h2020_topic.xlsx and /dev/null differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json deleted file mode 100644 index e8e04e8db..000000000 --- a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json +++ /dev/null @@ -1,277 +0,0 @@ -{"code":"H2020-EU.5.g.","title":"Take due and proportional precautions in research and innovation activities by anticipating and assessing potential environmental, health and safety impacts","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Take due and proportional precautions in research and innovation activities by anticipating and assessing potential environmental, health and safety impacts","classification_short":"Science with and for Society | Take due and proportional precautions in research and innovation activities by anticipating and assessing potential environmental, health and safety impacts"} -{"code":"H2020-EU.3.4.2.1.","title":"A substantial reduction of traffic congestion","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Better mobility, less congestion, more safety and security | A substantial reduction of traffic congestion","classification_short":"Societal Challenges | Transport | Mobility, safety and security | A substantial reduction of traffic congestion"} -{"code":"H2020-EU.3.4.5.4.","title":"ITD Airframe","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | ITD Airframe","classification_short":"Societal Challenges | Transport | CLEANSKY2 | ITD Airframe"} -{"code":"H2020-EU.3.3.8.1.","title":"Increase the electrical efficiency and the durability of the different fuel cells used for power production to levels which can compete with conventional technologies, while reducing costs","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | FCH2 (energy objectives) | Increase the electrical efficiency and the durability of the different fuel cells used for power production to levels which can compete with conventional technologies, while reducing costs","classification_short":"Societal Challenges | Energy | FCH2 (energy objectives) | Increase the electrical efficiency and the durability of the different fuel cells used for power production to levels which can compete with conventional technologies, while reducing costs"} -{"code":"H2020-EU.3.7.1.","title":"Fight crime, illegal trafficking and terrorism, including understanding and tackling terrorist ideas and beliefs","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Fight crime, illegal trafficking and terrorism, including understanding and tackling terrorist ideas and beliefs","classification_short":"Societal Challenges | Secure societies | Fight crime, illegal trafficking and terrorism, including understanding and tackling terrorist ideas and beliefs"} -{"code":"H2020-EU.3.4.1.1.","title":"Making aircraft, vehicles and vessels cleaner and quieter will improve environmental performance and reduce perceived noise and vibration","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Resource efficient transport that respects the environment | Making aircraft, vehicles and vessels cleaner and quieter will improve environmental performance and reduce perceived noise and vibration","classification_short":"Societal Challenges | Transport | Resource efficient transport that respects the environment | Making aircraft, vehicles and vessels cleaner and quieter will improve environmental performance and reduce perceived noise and vibration"} -{"code":"H2020-EU.1.4.3.","title":"Reinforcing European research infrastructure policy and international cooperation","shortTitle":"Research infrastructure policy and international cooperation","language":"en","classification":"Excellent science | Research Infrastructures | Reinforcing European research infrastructure policy and international cooperation","classification_short":"Excellent Science | Research Infrastructures | Research infrastructure policy and international cooperation"} -{"code":"H2020-EU.1.4.","title":"EXCELLENT SCIENCE - Research Infrastructures","shortTitle":"Research Infrastructures","language":"en","classification":"Excellent science | Research Infrastructures","classification_short":"Excellent Science | Research Infrastructures"} -{"code":"H2020-EU.3.4.6.1.","title":"Reduce the production cost of fuel cell systems to be used in transport applications, while increasing their lifetime to levels which can compete with conventional technologies","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | FCH2 (transport objectives) | Reduce the production cost of fuel cell systems to be used in transport applications, while increasing their lifetime to levels which can compete with conventional technologies","classification_short":"Societal Challenges | Transport | FCH2 (transport objectives) | Reduce the production cost of fuel cell systems to be used in transport applications, while increasing their lifetime to levels which can compete with conventional technologies"} -{"code":"H2020-EU.3.4.5.5.","title":"ITD Engines","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | ITD Engines","classification_short":"Societal Challenges | Transport | CLEANSKY2 | ITD Engines"} -{"code":"H2020-EU.2.1.1.7.3.","title":"Multi-disciplinary approaches for smart systems, supported by developments in holistic design and advanced manufacturing to realise self-reliant and adaptable smart systems having sophisticated interfaces and offering complex functionalities based on, for example, the seamless integration of sensing, actuating, processing, energy provision and networking","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | ECSEL | Multi-disciplinary approaches for smart systems, supported by developments in holistic design and advanced manufacturing to realise self-reliant and adaptable smart systems having sophisticated interfaces and offering complex functionalities based on, for example, the seamless integration of sensing, actuating, processing, energy provision and networking","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | ECSEL | Multi-disciplinary approaches for smart systems, supported by developments in holistic design and advanced manufacturing to realise self-reliant and adaptable smart systems having sophisticated interfaces and offering complex functionalities based on, for example, the seamless integration of sensing, actuating, processing, energy provision and networking"} -{"code":"H2020-EU.3.1.6.1.","title":"Promoting integrated care","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Health care provision and integrated care | Promoting integrated care","classification_short":"Societal Challenges | Health | Health care provision and integrated care | Promoting integrated care"} -{"code":"H2020-EU.3.7.6.","title":"Ensure privacy and freedom, including in the Internet and enhance the societal, legal and ethical understanding of all areas of security, risk and management","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Ensure privacy and freedom, including in the Internet and enhance the societal, legal and ethical understanding of all areas of security, risk and management","classification_short":"Societal Challenges | Secure societies | Ensure privacy and freedom, including in the Internet and enhance the societal, legal and ethical understanding of all areas of security, risk and management"} -{"code":"H2020-EU.3.4.2.3.","title":"Developing new concepts of freight transport and logistics","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Better mobility, less congestion, more safety and security | Developing new concepts of freight transport and logistics","classification_short":"Societal Challenges | Transport | Mobility, safety and security | Developing new concepts of freight transport and logistics"} -{"code":"H2020-EU.3.3.2.1.","title":"Develop the full potential of wind energy","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Low-cost, low-carbon energy supply | Develop the full potential of wind energy","classification_short":"Societal Challenges | Energy | Low-cost, low-carbon energy supply | Develop the full potential of wind energy"} -{"code":"H2020-EU.3.2.5.","title":"Cross-cutting marine and maritime research","shortTitle":"Cross-cutting marine and maritime research","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Cross-cutting marine and maritime research","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Cross-cutting marine and maritime research"} -{"code":"H2020-EU.3.4.7.","title":"SESAR JU","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | SESAR JU","classification_short":"Societal Challenges | Transport | SESAR JU"} -{"code":"H2020-EU.2.1.3.3.","title":"Management of materials components","shortTitle":"Management of materials components","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Management of materials components","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Management of materials components"} -{"code":"H2020-EU.3.3.3.","title":"Alternative fuels and mobile energy sources","shortTitle":"Alternative fuels and mobile energy sources","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Alternative fuels and mobile energy sources","classification_short":"Societal Challenges | Energy | Alternative fuels and mobile energy sources"} -{"code":"H2020-EU.7.","title":"THE EUROPEAN INSTITUTE OF INNOVATION AND TECHNOLOGY (EIT)","shortTitle":"European Institute of Innovation and Technology (EIT)","language":"en","classification":"THE EUROPEAN INSTITUTE OF INNOVATION AND TECHNOLOGY (EIT)","classification_short":"European Institute of Innovation and Technology (EIT)"} -{"code":"H2020-EU.3.5.4.1.","title":"Strengthen eco-innovative technologies, processes, services and products including exploring ways to reduce the quantities of raw materials in production and consumption, and overcoming barriers in this context and boost their market uptake","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Enabling the transition towards a green economy and society through eco-innovation | Strengthen eco-innovative technologies, processes, services and products including exploring ways to reduce the quantities of raw materials in production and consumption, and overcoming barriers in this context and boost their market uptake","classification_short":"Societal Challenges | Climate and environment | A green economy and society through eco-innovation | Strengthen eco-innovative technologies, processes, services and products including exploring ways to reduce the quantities of raw materials in production and consumption, and overcoming barriers in this context and boost their market uptake"} -{"code":"H2020-EU.3.1.4.","title":"Active ageing and self-management of health","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Active ageing and self-management of health","classification_short":"Societal Challenges | Health | Active ageing and self-management of health"} -{"code":"H2020-EU.1.","title":"Excellent science","shortTitle":"Excellent Science","language":"en","classification":"Excellent science","classification_short":"Excellent Science"} -{"code":"H2020-EU.3.5.6.1.","title":"Identifying resilience levels via observations, monitoring and modelling","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Cultural heritage | Identifying resilience levels via observations, monitoring and modelling","classification_short":"Societal Challenges | Climate and environment | Cultural heritage | Identifying resilience levels via observations, monitoring and modelling"} -{"code":"H2020-EU.3.2.4.3.","title":"Supporting market development for bio-based products and processes","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive bio-based industries and supporting the development of a European bioeconomy | Supporting market development for bio-based products and processes","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based industries and supporting bio-economy | Supporting market development for bio-based products and processes"} -{"code":"H2020-EU.2.1.6.1.","title":"Enabling European competitiveness, non-dependence and innovation of the European space sector","shortTitle":"Competitiveness, non-dependence and innovation","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling European competitiveness, non-dependence and innovation of the European space sector","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Competitiveness, non-dependence and innovation"} -{"code":"H2020-EU.4.b.","title":"Twinning of research institutions","shortTitle":"Twinning of research institutions","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | Twinning of research institutions","classification_short":"Spreading excellence and widening participation | Twinning of research institutions"} -{"code":"H2020-EU.3.1.7.6.","title":"Psychiatric diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Psychiatric diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Psychiatric diseases"} -{"code":"H2020-EU.3.1.2.2.","title":"Improving diagnosis and prognosis","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Preventing disease | Improving diagnosis and prognosis","classification_short":"Societal Challenges | Health | Preventing disease | Improving diagnosis and prognosis"} -{"code":"H2020-EU.3.4.5.3.","title":"IADP Fast Rotorcraft","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | IADP Fast Rotorcraft","classification_short":"Societal Challenges | Transport | CLEANSKY2 | IADP Fast Rotorcraft"} -{"code":"H2020-EU.3.1.3.1.","title":"Treating disease, including developing regenerative medicine","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Treating and managing disease | Treating disease, including developing regenerative medicine","classification_short":"Societal Challenges | Health | Treating and managing disease | Treating disease, including developing regenerative medicine"} -{"code":"H2020-EU.3.4.3.3.","title":"Advanced production processes","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Global leadership for the European transport industry | Advanced production processes","classification_short":"Societal Challenges | Transport | Global leadership for the European transport industry | Advanced production processes"} -{"code":"H2020-EU.3.1.7.","title":"Innovative Medicines Initiative 2 (IMI2)","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2)","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2)"} -{"code":"H2020-EU.3.6.3.2.","title":"Research into European countries' and regions' history, literature, art, philosophy and religions and how these have informed contemporary European diversity","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Reflective societies - cultural heritage and European identity | Research into European countries' and regions' history, literature, art, philosophy and religions and how these have informed contemporary European diversity","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Reflective societies | Research into European countries' and regions' history, literature, art, philosophy and religions and how these have informed contemporary European diversity"} -{"code":"H2020-EU.3.5.1.2.","title":"Assess impacts, vulnerabilities and develop innovative cost-effective adaptation and risk prevention and management measures","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Fighting and adapting to climate change | Assess impacts, vulnerabilities and develop innovative cost-effective adaptation and risk prevention and management measures","classification_short":"Societal Challenges | Climate and environment | Fighting and adapting to climate change | Assess impacts, vulnerabilities and develop innovative cost-effective adaptation and risk prevention and management measures"} -{"code":"H2020-EU.3.6.1.","title":"Inclusive societies","shortTitle":"Inclusive societies","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Inclusive societies","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Inclusive societies"} -{"code":"H2020-EU.3.2.","title":"SOCIETAL CHALLENGES - Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy","shortTitle":"Food, agriculture, forestry, marine research and bioeconomy","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy"} -{"code":"H2020-EU.2.1.6.1.2.","title":"Boost innovation between space and non-space sectors","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling European competitiveness, non-dependence and innovation of the European space sector | Boost innovation between space and non-space sectors","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Competitiveness, non-dependence and innovation | Boost innovation between space and non-space sectors"} -{"code":"H2020-EU.2.1.3.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies - Advanced materials","shortTitle":"Advanced materials","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials"} -{"code":"H2020-EU.2.1.2.3.","title":"Developing the societal dimension of nanotechnology","shortTitle":"Societal dimension of nanotechnology","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies | Developing the societal dimension of nanotechnology","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies | Societal dimension of nanotechnology"} -{"code":"H2020-EU.4.","title":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION","shortTitle":"Spreading excellence and widening participation","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION","classification_short":"Spreading excellence and widening participation"} -{"code":"H2020-EU.3.6.1.2.","title":"Trusted organisations, practices, services and policies that are necessary to build resilient, inclusive, participatory, open and creative societies in Europe, in particular taking into account migration, integration and demographic change","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Inclusive societies | Trusted organisations, practices, services and policies that are necessary to build resilient, inclusive, participatory, open and creative societies in Europe, in particular taking into account migration, integration and demographic change","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Inclusive societies | Trusted organisations, practices, services and policies that are necessary to build resilient, inclusive, participatory, open and creative societies in Europe, in particular taking into account migration, integration and demographic change"} -{"code":"H2020-EU.3.4.2.","title":"Better mobility, less congestion, more safety and security","shortTitle":"Mobility, safety and security","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Better mobility, less congestion, more safety and security","classification_short":"Societal Challenges | Transport | Mobility, safety and security"} -{"code":"H2020-EU.3.1.7.13.","title":"Other","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Other","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Other"} -{"code":"H2020-EU.3.3.3.3.","title":"New alternative fuels","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Alternative fuels and mobile energy sources | New alternative fuels","classification_short":"Societal Challenges | Energy | Alternative fuels and mobile energy sources | New alternative fuels"} -{"code":"H2020-EU.2.1.3.5.","title":"Materials for creative industries, including heritage","shortTitle":"Materials for creative industries, including heritage","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Materials for creative industries, including heritage","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Materials for creative industries, including heritage"} -{"code":"H2020-EU.3.3.3.2.","title":"Reducing time to market for hydrogen and fuel cells technologies","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Alternative fuels and mobile energy sources | Reducing time to market for hydrogen and fuel cells technologies","classification_short":"Societal Challenges | Energy | Alternative fuels and mobile energy sources | Reducing time to market for hydrogen and fuel cells technologies"} -{"code":"H2020-EU.5.d.","title":"Encourage citizens to engage in science through formal and informal science education, and promote the diffusion of science-based activities, namely in science centres and through other appropriate channels","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Encourage citizens to engage in science through formal and informal science education, and promote the diffusion of science-based activities, namely in science centres and through other appropriate channels","classification_short":"Science with and for Society | Encourage citizens to engage in science through formal and informal science education, and promote the diffusion of science-based activities, namely in science centres and through other appropriate channels"} -{"code":"H2020-EU.3.1.","title":"SOCIETAL CHALLENGES - Health, demographic change and well-being","shortTitle":"Health","language":"en","classification":"Societal challenges | Health, demographic change and well-being","classification_short":"Societal Challenges | Health"} -{"code":"H2020-EU.3.5.3.1.","title":"Improve the knowledge base on the availability of raw materials","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Ensuring the sustainable supply of non-energy and non-agricultural raw materials | Improve the knowledge base on the availability of raw materials","classification_short":"Societal Challenges | Climate and environment | Supply of non-energy and non-agricultural raw materials | Improve the knowledge base on the availability of raw materials"} -{"code":"H2020-EU.3.2.1.4.","title":"Sustainable forestry","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable agriculture and forestry | Sustainable forestry","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable agriculture and forestry | Sustainable forestry"} -{"code":"H2020-EU.3.3.","title":"SOCIETAL CHALLENGES - Secure, clean and efficient energy","shortTitle":"Energy","language":"en","classification":"Societal challenges | Secure, clean and efficient energy","classification_short":"Societal Challenges | Energy"} -{"code":"H2020-EU.3.4.8.1.","title":"Innovation Programme 1 (IP1): Cost-efficient and reliable trains","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Innovation Programme 1 (IP1): Cost-efficient and reliable trains","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Innovation Programme 1 (IP1): Cost-efficient and reliable trains"} -{"code":"H2020-EU.2.3.2.1.","title":"Support for research intensive SMEs","shortTitle":"Support for research intensive SMEs","language":"en","classification":"Industrial leadership | Innovation In SMEs | Specific support | Support for research intensive SMEs","classification_short":"Industrial Leadership | Innovation in SMEs | Specific support | Support for research intensive SMEs"} -{"code":"H2020-EU.2.1.3.2.","title":"Materials development and transformation","shortTitle":"Materials development and transformation","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Materials development and transformation","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Materials development and transformation"} -{"code":"H2020-EU.1.4.1.3.","title":"Development, deployment and operation of ICT-based e-infrastructures","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Developing the European research infrastructures for 2020 and beyond | Development, deployment and operation of ICT-based e-infrastructures","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures for 2020 and beyond | Development, deployment and operation of ICT-based e-infrastructures"} -{"code":"H2020-EU.3.5.4.2.","title":"Support innovative policies and societal changes","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Enabling the transition towards a green economy and society through eco-innovation | Support innovative policies and societal changes","classification_short":"Societal Challenges | Climate and environment | A green economy and society through eco-innovation | Support innovative policies and societal changes"} -{"code":"H2020-EU.2.1.3.6.","title":"Metrology, characterisation, standardisation and quality control","shortTitle":"Metrology, characterisation, standardisation and quality control","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Metrology, characterisation, standardisation and quality control","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Metrology, characterisation, standardisation and quality control"} -{"code":"H2020-EU.3.4.5.8.","title":"ECO Transverse Area","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | ECO Transverse Area","classification_short":"Societal Challenges | Transport | CLEANSKY2 | ECO Transverse Area"} -{"code":"H2020-EU.5.f.","title":"Develop the governance for the advancement of responsible research and innovation by all stakeholders, which is sensitive to society needs and demands and promote an ethics framework for research and innovation","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Develop the governance for the advancement of responsible research and innovation by all stakeholders, which is sensitive to society needs and demands and promote an ethics framework for research and innovation","classification_short":"Science with and for Society | Develop the governance for the advancement of responsible research and innovation by all stakeholders, which is sensitive to society needs and demands and promote an ethics framework for research and innovation"} -{"code":"H2020-EU.5.h.","title":"Improving knowledge on science communication in order to improve the quality and effectiveness of interactions between scientists, general media and the public","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Improving knowledge on science communication in order to improve the quality and effectiveness of interactions between scientists, general media and the public","classification_short":"Science with and for Society | Improving knowledge on science communication in order to improve the quality and effectiveness of interactions between scientists, general media and the public"} -{"code":"H2020-EU.2.1.1.7.1.","title":"Design technologies, process and integration, equipment, materials and manufacturing for micro- and nanoelectronics while targeting miniaturisation, diversification and differentiation, heterogeneous integration","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | ECSEL | Design technologies, process and integration, equipment, materials and manufacturing for micro- and nanoelectronics while targeting miniaturisation, diversification and differentiation, heterogeneous integration","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | ECSEL | Design technologies, process and integration, equipment, materials and manufacturing for micro- and nanoelectronics while targeting miniaturisation, diversification and differentiation, heterogeneous integration"} -{"code":"H2020-EU.3.7.5.","title":"Increase Europe's resilience to crises and disasters","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Increase Europe's resilience to crises and disasters","classification_short":"Societal Challenges | Secure societies | Increase Europe's resilience to crises and disasters"} -{"code":"H2020-EU.1.4.2.2.","title":"Strengthening the human capital of research infrastructures","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Fostering the innovation potential of research infrastructures and their human resources | Strengthening the human capital of research infrastructures","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures and their human resources | Strengthening the human capital of research infrastructures"} -{"code":"H2020-EU.3.4.1.2.","title":"Developing smart equipment, infrastructures and services","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Resource efficient transport that respects the environment | Developing smart equipment, infrastructures and services","classification_short":"Societal Challenges | Transport | Resource efficient transport that respects the environment | Developing smart equipment, infrastructures and services"} -{"code":"H2020-EU.2.3.2.2.","title":"Enhancing the innovation capacity of SMEs","shortTitle":"Enhancing the innovation capacity of SMEs","language":"en","classification":"Industrial leadership | Innovation In SMEs | Specific support | Enhancing the innovation capacity of SMEs","classification_short":"Industrial Leadership | Innovation in SMEs | Specific support | Enhancing the innovation capacity of SMEs"} -{"code":"H2020-EU.1.3.5.","title":"Specific support and policy actions","shortTitle":"MSCA Specific support","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions | Specific support and policy actions","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions | MSCA Specific support"} -{"code":"H2020-EU.3.2.3.3.","title":"Boosting marine and maritime innovation through biotechnology","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Unlocking the potential of aquatic living resources | Boosting marine and maritime innovation through biotechnology","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Potential of aquatic living resources | Boosting marine and maritime innovation through biotechnology"} -{"code":"H2020-EU.3.2.1.2.","title":"Providing ecosystems services and public goods","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable agriculture and forestry | Providing ecosystems services and public goods","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable agriculture and forestry | Providing ecosystems services and public goods"} -{"code":"H2020-EU.2.3.2.3.","title":"Supporting market-driven innovation","shortTitle":"Supporting market-driven innovation","language":"en","classification":"Industrial leadership | Innovation In SMEs | Specific support | Supporting market-driven innovation","classification_short":"Industrial Leadership | Innovation in SMEs | Specific support | Supporting market-driven innovation"} -{"code":"H2020-EU.5.a.","title":"Make scientific and technological careers attractive to young students, and forster sustainable interaction between schools, research institutions, industry and civil society organisations","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Make scientific and technological careers attractive to young students, and forster sustainable interaction between schools, research institutions, industry and civil society organisations","classification_short":"Science with and for Society | Make scientific and technological careers attractive to young students, and forster sustainable interaction between schools, research institutions, industry and civil society organisations"} -{"code":"H2020-EU.3.1.7.9.","title":"Ageing-associated diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Ageing-associated diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Ageing-associated diseases"} -{"code":"H2020-EU.2.2.1.","title":"The Debt facility providing debt finance for R&I: 'Union loan and guarantee service for research and innovation'","shortTitle":"Debt facility","language":"en","classification":"Industrial leadership | Access to risk finance | The Debt facility providing debt finance for R&I: 'Union loan and guarantee service for research and innovation'","classification_short":"Industrial Leadership | Access to risk finance | Debt facility"} -{"code":"H2020-Euratom-1.8.","title":"Ensure availability and use of research infrastructures of pan_european relevance","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Ensure availability and use of research infrastructures of pan_european relevance","classification_short":"Euratom | Indirect actions | Ensure availability and use of research infrastructures of pan_european relevance"} -{"code":"H2020-EU.3.2.2.1.","title":"Informed consumer choices","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | Informed consumer choices","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | Informed consumer choices"} -{"code":"H2020-EU.3.7.","title":"Secure societies - Protecting freedom and security of Europe and its citizens","shortTitle":"Secure societies","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens","classification_short":"Societal Challenges | Secure societies"} -{"code":"H2020-EU.1.3.4.","title":"Increasing structural impact by co-funding activities","shortTitle":"MSCA Co-funding","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions | Increasing structural impact by co-funding activities","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions | MSCA Co-funding"} -{"code":"H2020-EU.2.1.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies","shortTitle":"Leadership in enabling and industrial technologies (LEIT)","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT)"} -{"code":"H2020-EU.2.1.3.4.","title":"Materials for a sustainable, resource-efficient and low-emission industry","shortTitle":"Materials for a resource-efficient and low-emission industry","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Materials for a sustainable, resource-efficient and low-emission industry","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Materials for a resource-efficient and low-emission industry"} -{"code":"H2020-EU.3.4.5.7.","title":"Small Air Transport (SAT) Transverse Area","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | Small Air Transport (SAT) Transverse Area","classification_short":"Societal Challenges | Transport | CLEANSKY2 | Small Air Transport (SAT) Transverse Area"} -{"code":"H2020-EU.3.4.8.3.","title":"Innovation Programme 3: Cost Efficient and Reliable High Capacity Infrastructure","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Innovation Programme 3: Cost Efficient and Reliable High Capacity Infrastructure","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Innovation Programme 3: Cost Efficient and Reliable High Capacity Infrastructure"} -{"code":"H2020-Euratom-1.1.","title":"Support safe operation of nuclear systems","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Support safe operation of nuclear systems","classification_short":"Euratom | Indirect actions | Support safe operation of nuclear systems"} -{"code":"H2020-EU.2.3.1.","title":" Mainstreaming SME support, especially through a dedicated instrument","shortTitle":"Mainstreaming SME support","language":"en","classification":"Industrial leadership | Innovation In SMEs | Mainstreaming SME support, especially through a dedicated instrument","classification_short":"Industrial Leadership | Innovation in SMEs | Mainstreaming SME support"} -{"code":"H2020-EU.1.4.3.1.","title":"Reinforcing European policy for research infrastructures","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Reinforcing European research infrastructure policy and international cooperation | Reinforcing European policy for research infrastructures","classification_short":"Excellent Science | Research Infrastructures | Research infrastructure policy and international cooperation | Reinforcing European policy for research infrastructures"} -{"code":"H2020-Euratom-1.3.","title":"Support the development and sustainability of nuclear competences at Union level","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Support the development and sustainability of nuclear competences at Union level","classification_short":"Euratom | Indirect actions | Support the development and sustainability of nuclear competences at Union level"} -{"code":"H2020-EU.3.1.7.1.","title":"Antimicrobial resistance","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Antimicrobial resistance","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Antimicrobial resistance"} -{"code":"H2020-EU.3.7.4.","title":"Improve cyber security","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Improve cyber security","classification_short":"Societal Challenges | Secure societies | Improve cyber security"} -{"code":"H2020-EU.2.1.1.7.2.","title":"Processes, methods, tools and platforms, reference designs and architectures, for software and/or control-intensive embedded/cyber-physical systems, addressing seamless connectivity and interoperability, functional safety, high availability, and security for professional and consumer type applications, and connected services","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | ECSEL | Processes, methods, tools and platforms, reference designs and architectures, for software and/or control-intensive embedded/cyber-physical systems, addressing seamless connectivity and interoperability, functional safety, high availability, and security for professional and consumer type applications, and connected services","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | ECSEL | Processes, methods, tools and platforms, reference designs and architectures, for software and/or control-intensive embedded/cyber-physical systems, addressing seamless connectivity and interoperability, functional safety, high availability, and security for professional and consumer type applications, and connected services"} -{"code":"H2020-EU.3.5.4.","title":"Enabling the transition towards a green economy and society through eco-innovation","shortTitle":"A green economy and society through eco-innovation","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Enabling the transition towards a green economy and society through eco-innovation","classification_short":"Societal Challenges | Climate and environment | A green economy and society through eco-innovation"} -{"code":"H2020-EU.3.5.3.2.","title":"Promote the sustainable supply and use of raw materials, including mineral resources, from land and sea, covering exploration, extraction, processing, re-use, recycling and recovery","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Ensuring the sustainable supply of non-energy and non-agricultural raw materials | Promote the sustainable supply and use of raw materials, including mineral resources, from land and sea, covering exploration, extraction, processing, re-use, recycling and recovery","classification_short":"Societal Challenges | Climate and environment | Supply of non-energy and non-agricultural raw materials | Promote the sustainable supply and use of raw materials, including mineral resources, from land and sea, covering exploration, extraction, processing, re-use, recycling and recovery"} -{"code":"H2020-EU.3.4.5.10.","title":"Thematic Topics","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | Thematic Topics","classification_short":"Societal Challenges | Transport | CLEANSKY2 | Thematic Topics"} -{"code":"H2020-EU.3.1.5.1.","title":"Improving halth information and better use of health data","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Methods and data | Improving halth information and better use of health data","classification_short":"Societal Challenges | Health | Methods and data | Improving halth information and better use of health data"} -{"code":"H2020-EU.3.3.3.1.","title":"Make bio-energy more competitive and sustainable","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Alternative fuels and mobile energy sources | Make bio-energy more competitive and sustainable","classification_short":"Societal Challenges | Energy | Alternative fuels and mobile energy sources | Make bio-energy more competitive and sustainable"} -{"code":"H2020-EU.3.6.2.1.","title":"Strengthen the evidence base and support for the Innovation Union and ERA","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Innovative societies | Strengthen the evidence base and support for the Innovation Union and ERA","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Innovative societies | Strengthen the evidence base and support for the Innovation Union and ERA"} -{"code":"H2020-EU.3.1.7.12.","title":"Vaccine","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Vaccine","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Vaccine"} -{"code":"H2020-EU.3.5.4.3.","title":"Measure and assess progress towards a green economy","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Enabling the transition towards a green economy and society through eco-innovation | Measure and assess progress towards a green economy","classification_short":"Societal Challenges | Climate and environment | A green economy and society through eco-innovation | Measure and assess progress towards a green economy"} -{"code":"H2020-EU.3.4.8.5.","title":"Innovation Programme 5: Technologies for sustainable and attractive European rail freight","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Innovation Programme 5: Technologies for sustainable and attractive European rail freight","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Innovation Programme 5: Technologies for sustainable and attractive European rail freight"} -{"code":"H2020-EU.3.5.4.4.","title":"Foster resource efficiency through digital systems","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Enabling the transition towards a green economy and society through eco-innovation | Foster resource efficiency through digital systems","classification_short":"Societal Challenges | Climate and environment | A green economy and society through eco-innovation | Foster resource efficiency through digital systems"} -{"code":"H2020-EU.3.3.8.3.","title":"Demonstrate on a large scale the feasibility of using hydrogen to support integration of renewable energy sources into the energy systems, including through its use as a competitive energy storage medium for electricity produced from renewable energy sources","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | FCH2 (energy objectives) | Demonstrate on a large scale the feasibility of using hydrogen to support integration of renewable energy sources into the energy systems, including through its use as a competitive energy storage medium for electricity produced from renewable energy sources","classification_short":"Societal Challenges | Energy | FCH2 (energy objectives) | Demonstrate on a large scale the feasibility of using hydrogen to support integration of renewable energy sources into the energy systems, including through its use as a competitive energy storage medium for electricity produced from renewable energy sources"} -{"code":"H2020-Euratom","title":"Euratom","shortTitle":"","language":"en","classification":"Euratom","classification_short":"Euratom"} -{"code":"H2020-EU.3.5.6.2.","title":"Providing for a better understanding on how communities perceive and respond to climate change and seismic and volcanic hazards","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Cultural heritage | Providing for a better understanding on how communities perceive and respond to climate change and seismic and volcanic hazards","classification_short":"Societal Challenges | Climate and environment | Cultural heritage | Providing for a better understanding on how communities perceive and respond to climate change and seismic and volcanic hazards"} -{"code":"H2020-EU.3.2.5.2.","title":"Develop the potential of marine resources through an integrated approach","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Cross-cutting marine and maritime research | Develop the potential of marine resources through an integrated approach","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Cross-cutting marine and maritime research | Develop the potential of marine resources through an integrated approach"} -{"code":"H2020-EU.2.1.1.5.","title":"Advanced interfaces and robots: Robotics and smart spaces","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | Advanced interfaces and robots: Robotics and smart spaces","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | Advanced interfaces and robots: Robotics and smart spaces"} -{"code":"H2020-EU.3.3.5.","title":"New knowledge and technologies","shortTitle":"New knowledge and technologies","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | New knowledge and technologies","classification_short":"Societal Challenges | Energy | New knowledge and technologies"} -{"code":"H2020-EU.1.2.2.","title":"FET Proactive","shortTitle":"FET Proactive","language":"en","classification":"Excellent science | Future and Emerging Technologies (FET) | FET Proactive","classification_short":"Excellent Science | Future and Emerging Technologies (FET) | FET Proactive"} -{"code":"H2020-EU.3.6.1.3.","title":"Europe's role as a global actor, notably regarding human rights and global justice","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Inclusive societies | Europe's role as a global actor, notably regarding human rights and global justice","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Inclusive societies | Europe's role as a global actor, notably regarding human rights and global justice"} -{"code":"H2020-EU.2.1.4.1.","title":"Boosting cutting-edge biotechnologies as a future innovation driver","shortTitle":"Cutting-edge biotechnologies as future innovation driver","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Biotechnology | Boosting cutting-edge biotechnologies as a future innovation driver","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Biotechnology | Cutting-edge biotechnologies as future innovation driver"} -{"code":"H2020-EU.3.1.3.","title":"Treating and managing disease","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Treating and managing disease","classification_short":"Societal Challenges | Health | Treating and managing disease"} -{"code":"H2020-EU.3.3.4.","title":"A single, smart European electricity grid","shortTitle":"A single, smart European electricity grid","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | A single, smart European electricity grid","classification_short":"Societal Challenges | Energy | A single, smart European electricity grid"} -{"code":"H2020-EU.3.2.6.","title":"Bio-based Industries Joint Technology Initiative (BBI-JTI)","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI)","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI)"} -{"code":"H2020-EU.1.3.2.","title":"Nurturing excellence by means of cross-border and cross-sector mobility","shortTitle":"MSCA Mobility","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions | Nurturing excellence by means of cross-border and cross-sector mobility","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions | MSCA Mobility"} -{"code":"H2020-EU.2.1.3.7.","title":"Optimisation of the use of materials","shortTitle":"Optimisation of the use of materials","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Optimisation of the use of materials","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Optimisation of the use of materials"} -{"code":"H2020-EU.2.1.2.4.","title":"Efficient and sustainable synthesis and manufacturing of nanomaterials, components and systems","shortTitle":"Synthesis and manufacturing of nanomaterials, components and systems","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies | Efficient and sustainable synthesis and manufacturing of nanomaterials, components and systems","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies | Synthesis and manufacturing of nanomaterials, components and systems"} -{"code":"H2020-EU.1.4.1.","title":"Developing the European research infrastructures for 2020 and beyond","shortTitle":"Research infrastructures for 2020 and beyond","language":"en","classification":"Excellent science | Research Infrastructures | Developing the European research infrastructures for 2020 and beyond","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures for 2020 and beyond"} -{"code":"H2020-EU.3.1.1.1.","title":"Understanding the determinants of health, improving health promotion and disease prevention","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Understanding health, wellbeing and disease | Understanding the determinants of health, improving health promotion and disease prevention","classification_short":"Societal Challenges | Health | Understanding health, wellbeing and disease | Understanding the determinants of health, improving health promotion and disease prevention"} -{"code":"H2020-EU.5.c.","title":"Integrate society in science and innovation issues, policies and activities in order to integrate citizens' interests and values and to increase the quality, relevance, social acceptability and sustainability of research and innovation outcomes in various fields of activity from social innovation to areas such as biotechnology and nanotechnology","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Integrate society in science and innovation issues, policies and activities in order to integrate citizens' interests and values and to increase the quality, relevance, social acceptability and sustainability of research and innovation outcomes in various fields of activity from social innovation to areas such as biotechnology and nanotechnology","classification_short":"Science with and for Society | Integrate society in science and innovation issues, policies and activities in order to integrate citizens' interests and values and to increase the quality, relevance, social acceptability and sustainability of research and innovation outcomes in various fields of activity from social innovation to areas such as biotechnology and nanotechnology"} -{"code":"H2020-EU.5.","title":"SCIENCE WITH AND FOR SOCIETY","shortTitle":"Science with and for Society","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY","classification_short":"Science with and for Society"} -{"code":"H2020-EU.3.5.3.3.","title":"Find alternatives for critical raw materials","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Ensuring the sustainable supply of non-energy and non-agricultural raw materials | Find alternatives for critical raw materials","classification_short":"Societal Challenges | Climate and environment | Supply of non-energy and non-agricultural raw materials | Find alternatives for critical raw materials"} -{"code":"H2020-EU.3.2.3.1.","title":"Developing sustainable and environmentally-friendly fisheries","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Unlocking the potential of aquatic living resources | Developing sustainable and environmentally-friendly fisheries","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Potential of aquatic living resources | Developing sustainable and environmentally-friendly fisheries"} -{"code":"H2020-EU.2.1.2.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies – Nanotechnologies","shortTitle":"Nanotechnologies","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies"} -{"code":"H2020-EU.3.4.3.2.","title":"On board, smart control systems","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Global leadership for the European transport industry | On board, smart control systems","classification_short":"Societal Challenges | Transport | Global leadership for the European transport industry | On board, smart control systems"} -{"code":"H2020-EU.3.2.4.1.","title":"Fostering the bio-economy for bio-based industries","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive bio-based industries and supporting the development of a European bioeconomy | Fostering the bio-economy for bio-based industries","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based industries and supporting bio-economy | Fostering the bio-economy for bio-based industries"} -{"code":"H2020-EU.3.1.6.2.","title":"Optimising the efficiency and effectiveness of healthcare provision and reducing inequalities by evidence based decision making and dissemination of best practice, and innovative technologies and approaches","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Health care provision and integrated care | Optimising the efficiency and effectiveness of healthcare provision and reducing inequalities by evidence based decision making and dissemination of best practice, and innovative technologies and approaches","classification_short":"Societal Challenges | Health | Health care provision and integrated care | Optimising the efficiency and effectiveness of healthcare provision and reducing inequalities by evidence based decision making and dissemination of best practice, and innovative technologies and approaches"} -{"code":"H2020-EU.2.1.5.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies - Advanced manufacturing and processing","shortTitle":"Advanced manufacturing and processing","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced manufacturing and processing","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced manufacturing and processing"} -{"code":"H2020-EU.3.5.2.2.","title":"Developing integrated approaches to address water-related challenges and the transition to sustainable management and use of water resources and services","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Protection of the environment, sustainable management of natural resources, water, biodiversity and ecosystems | Developing integrated approaches to address water-related challenges and the transition to sustainable management and use of water resources and services","classification_short":"Societal Challenges | Climate and environment | Protection of the environment | Developing integrated approaches to address water-related challenges and the transition to sustainable management and use of water resources and services"} -{"code":"H2020-EU.3.1.7.3.","title":"Cardiovascular diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Cardiovascular diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Cardiovascular diseases"} -{"code":"H2020-EU.3.3.8.2.","title":"Increase the energy efficiency of production of hydrogen mainly from water electrolysis and renewable sources while reducing operating and capital costs, so that the combined system of the hydrogen production and the conversion using the fuel cell system can compete with the alternatives for electricity production available on the market","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | FCH2 (energy objectives) | Increase the energy efficiency of production of hydrogen mainly from water electrolysis and renewable sources while reducing operating and capital costs, so that the combined system of the hydrogen production and the conversion using the fuel cell system can compete with the alternatives for electricity production available on the market","classification_short":"Societal Challenges | Energy | FCH2 (energy objectives) | Increase the energy efficiency of production of hydrogen mainly from water electrolysis and renewable sources while reducing operating and capital costs, so that the combined system of the hydrogen production and the conversion using the fuel cell system can compete with the alternatives for electricity production available on the market"} -{"code":"H2020-EU.2.1.6.3.","title":"Enabling exploitation of space data","shortTitle":"Enabling exploitation of space data","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling exploitation of space data","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Enabling exploitation of space data"} -{"code":"H2020-EU.2.1.2.5.","title":"Developing and standardisation of capacity-enhancing techniques, measuring methods and equipment","shortTitle":"Capacity-enhancing techniques, measuring methods and equipment","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies | Developing and standardisation of capacity-enhancing techniques, measuring methods and equipment","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies | Capacity-enhancing techniques, measuring methods and equipment"} -{"code":"H2020-EU.3.6.2.","title":"Innovative societies","shortTitle":"Innovative societies","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Innovative societies","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Innovative societies"} -{"code":"H2020-EU.3.1.2.1.","title":"Developing effective prevention and screening programmes and improving the assessment of disease susceptibility","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Preventing disease | Developing effective prevention and screening programmes and improving the assessment of disease susceptibility","classification_short":"Societal Challenges | Health | Preventing disease | Developing effective prevention and screening programmes and improving the assessment of disease susceptibility"} -{"code":"H2020-EU.3.6.1.4.","title":"The promotion of sustainable and inclusive environments through innovative spatial and urban planning and design","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Inclusive societies | The promotion of sustainable and inclusive environments through innovative spatial and urban planning and design","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Inclusive societies | The promotion of sustainable and inclusive environments through innovative spatial and urban planning and design"} -{"code":"H2020-EU.3.3.2.4.","title":"Develop geothermal, hydro, marine and other renewable energy options","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Low-cost, low-carbon energy supply | Develop geothermal, hydro, marine and other renewable energy options","classification_short":"Societal Challenges | Energy | Low-cost, low-carbon energy supply | Develop geothermal, hydro, marine and other renewable energy options"} -{"code":"H2020-EU.5.b.","title":"Promote gender equality in particular by supporting structural change in the organisation of research institutions and in the content and design of research activities","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Promote gender equality in particular by supporting structural change in the organisation of research institutions and in the content and design of research activities","classification_short":"Science with and for Society | Promote gender equality in particular by supporting structural change in the organisation of research institutions and in the content and design of research activities"} -{"code":"H2020-EU.1.3.3.","title":"Stimulating innovation by means of cross-fertilisation of knowledge","shortTitle":"MSCA Knowledge","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions | Stimulating innovation by means of cross-fertilisation of knowledge","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions | MSCA Knowledge"} -{"code":"H2020-EU.3.1.4.2.","title":"Individual awareness and empowerment for self-management of health","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Active ageing and self-management of health | Individual awareness and empowerment for self-management of health","classification_short":"Societal Challenges | Health | Active ageing and self-management of health | Individual awareness and empowerment for self-management of health"} -{"code":"H2020-EU.3.1.7.8.","title":"Immune-mediated diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Immune-mediated diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Immune-mediated diseases"} -{"code":"H2020-EU.3.4.","title":"SOCIETAL CHALLENGES - Smart, Green And Integrated Transport","shortTitle":"Transport","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport","classification_short":"Societal Challenges | Transport"} -{"code":"H2020-EU.3.2.6.1.","title":"Sustainable and competitive bio-based industries and supporting the development of a European bio-economy","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Sustainable and competitive bio-based industries and supporting the development of a European bio-economy","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Sustainable and competitive bio-based industries and supporting the development of a European bio-economy"} -{"code":"H2020-EU.2.1.2.1.","title":"Developing next generation nanomaterials, nanodevices and nanosystems ","shortTitle":"Next generation nanomaterials, nanodevices and nanosystems","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies | Developing next generation nanomaterials, nanodevices and nanosystems ","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies | Next generation nanomaterials, nanodevices and nanosystems"} -{"code":"H2020-Euratom-1.5.","title":"Move toward demonstration of feasibility of fusion as a power source by exploiting existing and future fusion facilities","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Move toward demonstration of feasibility of fusion as a power source by exploiting existing and future fusion facilities","classification_short":"Euratom | Indirect actions | Move toward demonstration of feasibility of fusion as a power source by exploiting existing and future fusion facilities"} -{"code":"H2020-EU.3.5.","title":"SOCIETAL CHALLENGES - Climate action, Environment, Resource Efficiency and Raw Materials","shortTitle":"Climate and environment","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials","classification_short":"Societal Challenges | Climate and environment"} -{"code":"H2020-EU.2.1.1.6.","title":"Micro- and nanoelectronics and photonics: Key enabling technologies related to micro- and nanoelectronics and to photonics, covering also quantum technologies","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | Micro- and nanoelectronics and photonics: Key enabling technologies related to micro- and nanoelectronics and to photonics, covering also quantum technologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | Micro- and nanoelectronics and photonics: Key enabling technologies related to micro- and nanoelectronics and to photonics, covering also quantum technologies"} -{"code":"H2020-EU.3.4.2.4.","title":"Reducing accident rates, fatalities and casualties and improving security","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Better mobility, less congestion, more safety and security | Reducing accident rates, fatalities and casualties and improving security","classification_short":"Societal Challenges | Transport | Mobility, safety and security | Reducing accident rates, fatalities and casualties and improving security"} -{"code":"H2020-EU.3.6.2.2.","title":"Explore new forms of innovation, with special emphasis on social innovation and creativity and understanding how all forms of innovation are developed, succeed or fail","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Innovative societies | Explore new forms of innovation, with special emphasis on social innovation and creativity and understanding how all forms of innovation are developed, succeed or fail","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Innovative societies | Explore new forms of innovation, with special emphasis on social innovation and creativity and understanding how all forms of innovation are developed, succeed or fail"} -{"code":"H2020-EU.3.5.1.1.","title":"Improve the understanding of climate change and the provision of reliable climate projections","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Fighting and adapting to climate change | Improve the understanding of climate change and the provision of reliable climate projections","classification_short":"Societal Challenges | Climate and environment | Fighting and adapting to climate change | Improve the understanding of climate change and the provision of reliable climate projections"} -{"code":"H2020-EU.3.4.3.4.","title":"Exploring entirely new transport concepts","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Global leadership for the European transport industry | Exploring entirely new transport concepts","classification_short":"Societal Challenges | Transport | Global leadership for the European transport industry | Exploring entirely new transport concepts"} -{"code":"H2020-EU.3.5.2.1.","title":"Further our understanding of biodiversity and the functioning of ecosystems, their interactions with social systems and their role in sustaining the economy and human well-being","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Protection of the environment, sustainable management of natural resources, water, biodiversity and ecosystems | Further our understanding of biodiversity and the functioning of ecosystems, their interactions with social systems and their role in sustaining the economy and human well-being","classification_short":"Societal Challenges | Climate and environment | Protection of the environment | Further our understanding of biodiversity and the functioning of ecosystems, their interactions with social systems and their role in sustaining the economy and human well-being"} -{"code":"H2020-EU.3.2.2.3.","title":"A sustainable and competitive agri-food industry","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | A sustainable and competitive agri-food industry","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | A sustainable and competitive agri-food industry"} -{"code":"H2020-EU.1.4.1.1.","title":"Developing new world-class research infrastructures","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Developing the European research infrastructures for 2020 and beyond | Developing new world-class research infrastructures","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures for 2020 and beyond | Developing new world-class research infrastructures"} -{"code":"H2020-EU.3.1.2.3.","title":"Developing better preventive and therapeutic vaccines","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Preventing disease | Developing better preventive and therapeutic vaccines","classification_short":"Societal Challenges | Health | Preventing disease | Developing better preventive and therapeutic vaccines"} -{"code":"H2020-EU.1.4.3.2.","title":"Facilitate strategic international cooperation","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Reinforcing European research infrastructure policy and international cooperation | Facilitate strategic international cooperation","classification_short":"Excellent Science | Research Infrastructures | Research infrastructure policy and international cooperation | Facilitate strategic international cooperation"} -{"code":"H2020-EU.3.5.2.","title":"Protection of the environment, sustainable management of natural resources, water, biodiversity and ecosystems","shortTitle":"Protection of the environment","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Protection of the environment, sustainable management of natural resources, water, biodiversity and ecosystems","classification_short":"Societal Challenges | Climate and environment | Protection of the environment"} -{"code":"H2020-Euratom-1.9.","title":"European Fusion Development Agreement","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | European Fusion Development Agreement","classification_short":"Euratom | Indirect actions | European Fusion Development Agreement"} -{"code":"H2020-EU.3.2.1.1.","title":"Increasing production efficiency and coping with climate change, while ensuring sustainability and resilience","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable agriculture and forestry | Increasing production efficiency and coping with climate change, while ensuring sustainability and resilience","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable agriculture and forestry | Increasing production efficiency and coping with climate change, while ensuring sustainability and resilience"} -{"code":"H2020-EU.3.2.2.2.","title":"Healthy and safe foods and diets for all","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | Healthy and safe foods and diets for all","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet | Healthy and safe foods and diets for all"} -{"code":"H2020-EU.2.1.4.2.","title":"Bio-technology based industrial products and processes","shortTitle":"Bio-technology based industrial products and processes","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Biotechnology | Bio-technology based industrial products and processes","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Biotechnology | Bio-technology based industrial products and processes"} -{"code":"H2020-EU.3.4.5.1.","title":"IADP Large Passenger Aircraft","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | IADP Large Passenger Aircraft","classification_short":"Societal Challenges | Transport | CLEANSKY2 | IADP Large Passenger Aircraft"} -{"code":"H2020-EU.3.1.1.3.","title":"Improving surveillance and preparedness","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Understanding health, wellbeing and disease | Improving surveillance and preparedness","classification_short":"Societal Challenges | Health | Understanding health, wellbeing and disease | Improving surveillance and preparedness"} -{"code":"H2020-EU.2.1.6.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies – Space","shortTitle":"Space","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space"} -{"code":"H2020-EU.3.1.5.2.","title":"Improving scientific tools and methods to support policy making and regulatory needs","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Methods and data | Improving scientific tools and methods to support policy making and regulatory needs","classification_short":"Societal Challenges | Health | Methods and data | Improving scientific tools and methods to support policy making and regulatory needs"} -{"code":"H2020-EU.3.","title":"Societal challenges","shortTitle":"Societal Challenges","language":"en","classification":"Societal challenges","classification_short":"Societal Challenges"} -{"code":"H2020-EU.1.3.","title":"EXCELLENT SCIENCE - Marie Skłodowska-Curie Actions","shortTitle":"Marie-Sklodowska-Curie Actions","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions"} -{"code":"H2020-EU.4.f.","title":"Strengthening the administrative and operational capacity of transnational networks of National Contact Points","shortTitle":"","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | Strengthening the administrative and operational capacity of transnational networks of National Contact Points","classification_short":"Spreading excellence and widening participation | Strengthening the administrative and operational capacity of transnational networks of National Contact Points"} -{"code":"H2020-EU.1.2.","title":"EXCELLENT SCIENCE - Future and Emerging Technologies (FET)","shortTitle":"Future and Emerging Technologies (FET)","language":"en","classification":"Excellent science | Future and Emerging Technologies (FET)","classification_short":"Excellent Science | Future and Emerging Technologies (FET)"} -{"code":"H2020-EU.3.3.1.1.","title":"Bring to mass market technologies and services for a smart and efficient energy use","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Reducing energy consumption and carbon foorpint by smart and sustainable use | Bring to mass market technologies and services for a smart and efficient energy use","classification_short":"Societal Challenges | Energy | Reducing energy consumption and carbon footprint | Bring to mass market technologies and services for a smart and efficient energy use"} -{"code":"H2020-EU.3.3.2.2.","title":"Develop efficient, reliable and cost-competitive solar energy systems","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Low-cost, low-carbon energy supply | Develop efficient, reliable and cost-competitive solar energy systems","classification_short":"Societal Challenges | Energy | Low-cost, low-carbon energy supply | Develop efficient, reliable and cost-competitive solar energy systems"} -{"code":"H2020-EU.4.c.","title":"Establishing ‚ERA Chairs’","shortTitle":"ERA chairs","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | Establishing ‚ERA Chairs’","classification_short":"Spreading excellence and widening participation | ERA chairs"} -{"code":"H2020-EU.3.4.5","title":"CLEANSKY2","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2","classification_short":"Societal Challenges | Transport | CLEANSKY2"} -{"code":"H2020-EU.3.4.5.2.","title":"IADP Regional Aircraft","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | IADP Regional Aircraft","classification_short":"Societal Challenges | Transport | CLEANSKY2 | IADP Regional Aircraft"} -{"code":"H2020-EU.3.5.1.","title":"Fighting and adapting to climate change","shortTitle":"Fighting and adapting to climate change","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Fighting and adapting to climate change","classification_short":"Societal Challenges | Climate and environment | Fighting and adapting to climate change"} -{"code":"H2020-EU.3.3.1.","title":"Reducing energy consumption and carbon foorpint by smart and sustainable use","shortTitle":"Reducing energy consumption and carbon footprint","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Reducing energy consumption and carbon foorpint by smart and sustainable use","classification_short":"Societal Challenges | Energy | Reducing energy consumption and carbon footprint"} -{"code":"H2020-EU.3.4.1.","title":"Resource efficient transport that respects the environment","shortTitle":"Resource efficient transport that respects the environment","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Resource efficient transport that respects the environment","classification_short":"Societal Challenges | Transport | Resource efficient transport that respects the environment"} -{"code":"H2020-EU.3.2.6.2.","title":"Fostering the bio-economy for bio-based industrie","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Fostering the bio-economy for bio-based industrie","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Fostering the bio-economy for bio-based industrie"} -{"code":"H2020-EU.3.4.7.1","title":"Exploratory Research","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | SESAR JU | Exploratory Research","classification_short":"Societal Challenges | Transport | SESAR JU | Exploratory Research"} -{"code":"H2020-EU.1.2.1.","title":"FET Open","shortTitle":"FET Open","language":"en","classification":"Excellent science | Future and Emerging Technologies (FET) | FET Open","classification_short":"Excellent Science | Future and Emerging Technologies (FET) | FET Open"} -{"code":"H2020-EU.3.4.3.1.","title":"Developing the next generation of transport means as the way to secure market share in the future","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Global leadership for the European transport industry | Developing the next generation of transport means as the way to secure market share in the future","classification_short":"Societal Challenges | Transport | Global leadership for the European transport industry | Developing the next generation of transport means as the way to secure market share in the future"} -{"code":"H2020-EU.3.2.4.","title":"Sustainable and competitive bio-based industries and supporting the development of a European bioeconomy","shortTitle":"Bio-based industries and supporting bio-economy","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive bio-based industries and supporting the development of a European bioeconomy","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based industries and supporting bio-economy"} -{"code":"H2020-EC","title":"Horizon 2020 Framework Programme","shortTitle":"EC Treaty","language":"en","classification":"Horizon 2020 Framework Programme","classification_short":"EC Treaty"} -{"code":"H2020-EU.3.6.2.4.","title":"Promote coherent and effective cooperation with third countries","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Innovative societies | Promote coherent and effective cooperation with third countries","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Innovative societies | Promote coherent and effective cooperation with third countries"} -{"code":"H2020-EU.3.1.7.5.","title":"Neurodegenerative diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Neurodegenerative diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Neurodegenerative diseases"} -{"code":"H2020-EU.2.1.6.4.","title":"Enabling European research in support of international space partnerships","shortTitle":"Research in support of international space partnerships","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling European research in support of international space partnerships","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Research in support of international space partnerships"} -{"code":"H2020-EU.2.1.5.1.","title":"Technologies for Factories of the Future","shortTitle":"Technologies for Factories of the Future","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced manufacturing and processing | Technologies for Factories of the Future","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced manufacturing and processing | Technologies for Factories of the Future"} -{"code":"H2020-EU.2.3.2.","title":"Specific support","shortTitle":"","language":"en","classification":"Industrial leadership | Innovation In SMEs | Specific support","classification_short":"Industrial Leadership | Innovation in SMEs | Specific support"} -{"code":"H2020-EU.1.4.2.","title":"Fostering the innovation potential of research infrastructures and their human resources","shortTitle":"Research infrastructures and their human resources","language":"en","classification":"Excellent science | Research Infrastructures | Fostering the innovation potential of research infrastructures and their human resources","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures and their human resources"} -{"code":"H2020-EU.3.3.1.2.","title":"Unlock the potential of efficient and renewable heating-cooling systems","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Reducing energy consumption and carbon foorpint by smart and sustainable use | Unlock the potential of efficient and renewable heating-cooling systems","classification_short":"Societal Challenges | Energy | Reducing energy consumption and carbon footprint | Unlock the potential of efficient and renewable heating-cooling systems"} -{"code":"H2020-EU.3.2.3.2.","title":"Developing competitive and environmentally-friendly European aquaculture","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Unlocking the potential of aquatic living resources | Developing competitive and environmentally-friendly European aquaculture","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Potential of aquatic living resources | Developing competitive and environmentally-friendly European aquaculture"} -{"code":"H2020-EU.3.2.1.3.","title":"Empowerment of rural areas, support to policies and rural innovation","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable agriculture and forestry | Empowerment of rural areas, support to policies and rural innovation","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable agriculture and forestry | Empowerment of rural areas, support to policies and rural innovation"} -{"code":"H2020-EU.3.2.5.3.","title":"Cross-cutting concepts and technologies enabling maritime growth","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Cross-cutting marine and maritime research | Cross-cutting concepts and technologies enabling maritime growth","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Cross-cutting marine and maritime research | Cross-cutting concepts and technologies enabling maritime growth"} -{"code":"H2020-EU.2.1.3.1.","title":"Cross-cutting and enabling materials technologies","shortTitle":"Cross-cutting and enabling materials technologies","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced materials | Cross-cutting and enabling materials technologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced materials | Cross-cutting and enabling materials technologies"} -{"code":"H2020-EU.3.1.1.2.","title":"Understanding disease","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Understanding health, wellbeing and disease | Understanding disease","classification_short":"Societal Challenges | Health | Understanding health, wellbeing and disease | Understanding disease"} -{"code":"H2020-Euratom-1.6.","title":"Lay the foundations for future fusion power plants by developing materials, technologies and conceptual design","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Lay the foundations for future fusion power plants by developing materials, technologies and conceptual design","classification_short":"Euratom | Indirect actions | Lay the foundations for future fusion power plants by developing materials, technologies and conceptual design"} -{"code":"H2020-EU.3.5.7.1.","title":"Reduce the use of the EU defined \"Critical raw materials\", for instance through low platinum or platinum free resources and through recycling or reducing or avoiding the use of rare earth elements","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | FCH2 (raw materials objective) | Reduce the use of the EU defined \"Critical raw materials\", for instance through low platinum or platinum free resources and through recycling or reducing or avoiding the use of rare earth elements","classification_short":"Societal Challenges | Climate and environment | FCH2 (raw materials objective) | Reduce the use of the EU defined \"Critical raw materials\", for instance through low platinum or platinum free resources and through recycling or reducing or avoiding the use of rare earth elements"} -{"code":"H2020-EU.2.2.","title":"INDUSTRIAL LEADERSHIP - Access to risk finance","shortTitle":"Access to risk finance","language":"en","classification":"Industrial leadership | Access to risk finance","classification_short":"Industrial Leadership | Access to risk finance"} -{"code":"H2020-EU.3.4.6.","title":"FCH2 (transport objectives)","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | FCH2 (transport objectives)","classification_short":"Societal Challenges | Transport | FCH2 (transport objectives)"} -{"code":"H2020-EU.4.d.","title":"A Policy Support Facility","shortTitle":"Policy Support Facility (PSF)","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | A Policy Support Facility","classification_short":"Spreading excellence and widening participation | Policy Support Facility (PSF)"} -{"code":"H2020-EU.2.1.1.7.","title":"ECSEL","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | ECSEL","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | ECSEL"} -{"code":"H2020-EU.3.1.5.","title":"Methods and data","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Methods and data","classification_short":"Societal Challenges | Health | Methods and data"} -{"code":"H2020-EU.3.7.7.","title":"Enhance stadardisation and interoperability of systems, including for emergency purposes","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Enhance stadardisation and interoperability of systems, including for emergency purposes","classification_short":"Societal Challenges | Secure societies | Enhance stadardisation and interoperability of systems, including for emergency purposes"} -{"code":"H2020-Euratom-1.7.","title":"Promote innovation and industry competitiveness","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Promote innovation and industry competitiveness","classification_short":"Euratom | Indirect actions | Promote innovation and industry competitiveness"} -{"code":"H2020-EU.2.1.5.3.","title":"Sustainable, resource-efficient and low-carbon technologies in energy-intensive process industries","shortTitle":"Sustainable, resource-efficient and low-carbon technologies in energy-intensive process industries","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced manufacturing and processing | Sustainable, resource-efficient and low-carbon technologies in energy-intensive process industries","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced manufacturing and processing | Sustainable, resource-efficient and low-carbon technologies in energy-intensive process industries"} -{"code":"H2020-EU.2.1.4.3.","title":"Innovative and competitive platform technologies","shortTitle":"Innovative and competitive platform technologies","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Biotechnology | Innovative and competitive platform technologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Biotechnology | Innovative and competitive platform technologies"} -{"code":"H2020-EU.1.2.3.","title":"FET Flagships","shortTitle":"FET Flagships","language":"en","classification":"Excellent science | Future and Emerging Technologies (FET) | FET Flagships","classification_short":"Excellent Science | Future and Emerging Technologies (FET) | FET Flagships"} -{"code":"H2020-EU.3.6.3.","title":"Reflective societies - cultural heritage and European identity","shortTitle":"Reflective societies","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Reflective societies - cultural heritage and European identity","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Reflective societies"} -{"code":"H2020-EU.3.6.3.3.","title":"Research on Europe's role in the world, on the mutual influence and ties between the world regions, and a view from outside on European cultures","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Reflective societies - cultural heritage and European identity | Research on Europe's role in the world, on the mutual influence and ties between the world regions, and a view from outside on European cultures","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Reflective societies | Research on Europe's role in the world, on the mutual influence and ties between the world regions, and a view from outside on European cultures"} -{"code":"H2020-EU.3.2.4.2.","title":"Developing integrated biorefineries","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive bio-based industries and supporting the development of a European bioeconomy | Developing integrated biorefineries","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based industries and supporting bio-economy | Developing integrated biorefineries"} -{"code":"H2020-EU.2.1.6.1.1.","title":"Safeguard and further develop a competitive, sustainable and entrepreneurial space industry and research community and strengthen European non-dependence in space systems","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling European competitiveness, non-dependence and innovation of the European space sector | Safeguard and further develop a competitive, sustainable and entrepreneurial space industry and research community and strengthen European non-dependence in space systems","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Competitiveness, non-dependence and innovation | Safeguard and further develop a competitive, sustainable and entrepreneurial space industry and research community and strengthen European non-dependence in space systems"} -{"code":"H2020-EU.3.1.3.2.","title":"Transferring knowledge to clinical practice and scalable innovation actions","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Treating and managing disease | Transferring knowledge to clinical practice and scalable innovation actions","classification_short":"Societal Challenges | Health | Treating and managing disease | Transferring knowledge to clinical practice and scalable innovation actions"} -{"code":"H2020-EU.2.","title":"Industrial leadership","shortTitle":"Industrial Leadership","language":"en","classification":"Industrial leadership","classification_short":"Industrial Leadership"} -{"code":"H2020-EU.3.4.1.3.","title":"Improving transport and mobility in urban areas","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Resource efficient transport that respects the environment | Improving transport and mobility in urban areas","classification_short":"Societal Challenges | Transport | Resource efficient transport that respects the environment | Improving transport and mobility in urban areas"} -{"code":"H2020-EU.4.e.","title":"Supporting access to international networks for excellent researchers and innovators who lack sufficient involvement in European and international networks","shortTitle":"","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | Supporting access to international networks for excellent researchers and innovators who lack sufficient involvement in European and international networks","classification_short":"Spreading excellence and widening participation | Supporting access to international networks for excellent researchers and innovators who lack sufficient involvement in European and international networks"} -{"code":"H2020-EU.3.2.1.","title":"Sustainable agriculture and forestry","shortTitle":"Sustainable agriculture and forestry","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable agriculture and forestry","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable agriculture and forestry"} -{"code":"H2020-EU.3.1.7.7.","title":"Respiratory diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Respiratory diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Respiratory diseases"} -{"code":"H2020-EU.3.4.8.6.","title":"Cross-cutting themes and activities (CCA)","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Cross-cutting themes and activities (CCA)","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Cross-cutting themes and activities (CCA)"} -{"code":"H2020-EU.3.4.8.4.","title":"Innovation Programme 4: IT Solutions for attractive railway services","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Innovation Programme 4: IT Solutions for attractive railway services","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Innovation Programme 4: IT Solutions for attractive railway services"} -{"code":"H2020-EU.3.2.2.","title":"Sustainable and competitive agri-food sector for a safe and healthy diet","shortTitle":"Sustainable and competitive agri-food sector for a safe and healthy diet","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Sustainable and competitive agri-food sector for a safe and healthy diet"} -{"code":"H2020-EU.3.4.3.","title":"Global leadership for the European transport industry","shortTitle":"Global leadership for the European transport industry","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Global leadership for the European transport industry","classification_short":"Societal Challenges | Transport | Global leadership for the European transport industry"} -{"code":"H2020-EU.1.4.2.1.","title":"Exploiting the innovation potential of research infrastructures","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Fostering the innovation potential of research infrastructures and their human resources | Exploiting the innovation potential of research infrastructures","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures and their human resources | Exploiting the innovation potential of research infrastructures"} -{"code":"H2020-EU.3.3.2.3.","title":"Develop competitive and environmentally safe technologies for CO2 capture, transport, storage and re-use","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Low-cost, low-carbon energy supply | Develop competitive and environmentally safe technologies for CO2 capture, transport, storage and re-use","classification_short":"Societal Challenges | Energy | Low-cost, low-carbon energy supply | Develop competitive and environmentally safe technologies for CO2 capture, transport, storage and re-use"} -{"code":"H2020-EU.3.6.3.1.","title":"Study European heritage, memory, identity, integration and cultural interaction and translation, including its representations in cultural and scientific collections, archives and museums, to better inform and understand the present by richer interpretations of the past","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Reflective societies - cultural heritage and European identity | Study European heritage, memory, identity, integration and cultural interaction and translation, including its representations in cultural and scientific collections, archives and museums, to better inform and understand the present by richer interpretations of the past","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Reflective societies | Study European heritage, memory, identity, integration and cultural interaction and translation, including its representations in cultural and scientific collections, archives and museums, to better inform and understand the present by richer interpretations of the past"} -{"code":"H2020-EU.2.1.2.2.","title":"Ensuring the safe and sustainable development and application of nanotechnologies","shortTitle":"Safe and sustainable nanotechnologies","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Nanotechnologies | Ensuring the safe and sustainable development and application of nanotechnologies","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Nanotechnologies | Safe and sustainable nanotechnologies"} -{"code":"H2020-EU.3.1.6.","title":"Health care provision and integrated care","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Health care provision and integrated care","classification_short":"Societal Challenges | Health | Health care provision and integrated care"} -{"code":"H2020-EU.3.4.5.9.","title":"Technology Evaluator","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | Technology Evaluator","classification_short":"Societal Challenges | Transport | CLEANSKY2 | Technology Evaluator"} -{"code":"H2020-EU.3.6.","title":"SOCIETAL CHALLENGES - Europe In A Changing World - Inclusive, Innovative And Reflective Societies","shortTitle":"Inclusive, innovative and reflective societies","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies"} -{"code":"H2020-EU.3.4.8.","title":"Shift2Rail JU","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU","classification_short":"Societal Challenges | Transport | Shift2Rail JU"} -{"code":"H2020-EU.3.2.6.3.","title":"Sustainable biorefineries","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Sustainable biorefineries","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Bio-based Industries Joint Technology Initiative (BBI-JTI) | Sustainable biorefineries"} -{"code":"H2020-EU.4.a.","title":"Teaming of excellent research institutions and low performing RDI regions","shortTitle":"Teaming of research institutions and low performing regions","language":"en","classification":"SPREADING EXCELLENCE AND WIDENING PARTICIPATION | Teaming of excellent research institutions and low performing RDI regions","classification_short":"Spreading excellence and widening participation | Teaming of research institutions and low performing regions"} -{"code":"H2020-EU.3.1.7.4.","title":"Diabetes","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Diabetes","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Diabetes"} -{"code":"H2020-EU.3.7.2.","title":"Protect and improve the resilience of critical infrastructures, supply chains and tranport modes","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Protect and improve the resilience of critical infrastructures, supply chains and tranport modes","classification_short":"Societal Challenges | Secure societies | Protect and improve the resilience of critical infrastructures, supply chains and tranport modes"} -{"code":"H2020-EU.3.1.2.","title":"Preventing disease","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Preventing disease","classification_short":"Societal Challenges | Health | Preventing disease"} -{"code":"H2020-EU.3.5.3.4.","title":"Improve societal awareness and skills on raw materials","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Ensuring the sustainable supply of non-energy and non-agricultural raw materials | Improve societal awareness and skills on raw materials","classification_short":"Societal Challenges | Climate and environment | Supply of non-energy and non-agricultural raw materials | Improve societal awareness and skills on raw materials"} -{"code":"H2020-EU.3.3.7.","title":"Market uptake of energy innovation - building on Intelligent Energy Europe","shortTitle":"Market uptake of energy innovation","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Market uptake of energy innovation - building on Intelligent Energy Europe","classification_short":"Societal Challenges | Energy | Market uptake of energy innovation"} -{"code":"H2020-EU.2.3.","title":"INDUSTRIAL LEADERSHIP - Innovation In SMEs","shortTitle":"Innovation in SMEs","language":"en","classification":"Industrial leadership | Innovation In SMEs","classification_short":"Industrial Leadership | Innovation in SMEs"} -{"code":"H2020-EU.2.1.1.3.","title":"Future Internet: Software, hardware, Infrastructures, technologies and services","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | Future Internet: Software, hardware, Infrastructures, technologies and services","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | Future Internet: Software, hardware, Infrastructures, technologies and services"} -{"code":"H2020-EU.3.1.5.3.","title":"Using in-silico medicine for improving disease management and prediction","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Methods and data | Using in-silico medicine for improving disease management and prediction","classification_short":"Societal Challenges | Health | Methods and data | Using in-silico medicine for improving disease management and prediction"} -{"code":"H2020-EU.3.6.1.1.","title":"The mechanisms to promote smart, sustainable and inclusive growth","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Inclusive societies | The mechanisms to promote smart, sustainable and inclusive growth","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Inclusive societies | The mechanisms to promote smart, sustainable and inclusive growth"} -{"code":"H2020-EU.1.3.1.","title":"Fostering new skills by means of excellent initial training of researchers","shortTitle":"MCSA Initial training","language":"en","classification":"Excellent science | Marie Skłodowska-Curie Actions | Fostering new skills by means of excellent initial training of researchers","classification_short":"Excellent Science | Marie-Sklodowska-Curie Actions | MCSA Initial training"} -{"code":"H2020-EU.3.6.2.3.","title":"Make use of the innovative, creative and productive potential of all generations","shortTitle":"","language":"en","classification":"Societal challenges | Europe In A Changing World - Inclusive, Innovative And Reflective Societies | Innovative societies | Make use of the innovative, creative and productive potential of all generations","classification_short":"Societal Challenges | Inclusive, innovative and reflective societies | Innovative societies | Make use of the innovative, creative and productive potential of all generations"} -{"code":"H2020-EU.3.5.1.3.","title":"Support mitigation policies, including studies that focus on impact from other sectoral policies","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Fighting and adapting to climate change | Support mitigation policies, including studies that focus on impact from other sectoral policies","classification_short":"Societal Challenges | Climate and environment | Fighting and adapting to climate change | Support mitigation policies, including studies that focus on impact from other sectoral policies"} -{"code":"H2020-EU.3.3.1.3.","title":"Foster European Smart cities and Communities","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Reducing energy consumption and carbon foorpint by smart and sustainable use | Foster European Smart cities and Communities","classification_short":"Societal Challenges | Energy | Reducing energy consumption and carbon footprint | Foster European Smart cities and Communities"} -{"code":"H2020-EU.3.1.1.","title":"Understanding health, wellbeing and disease","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Understanding health, wellbeing and disease","classification_short":"Societal Challenges | Health | Understanding health, wellbeing and disease"} -{"code":"H2020-Euratom-1.","title":"Indirect actions","shortTitle":"","language":"en","classification":"Euratom | Indirect actions","classification_short":"Euratom | Indirect actions"} -{"code":"H2020-EU.3.5.7.","title":"FCH2 (raw materials objective)","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | FCH2 (raw materials objective)","classification_short":"Societal Challenges | Climate and environment | FCH2 (raw materials objective)"} -{"code":"H2020-EU.3.7.3.","title":"Strengthen security through border management","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Strengthen security through border management","classification_short":"Societal Challenges | Secure societies | Strengthen security through border management"} -{"code":"H2020-EU.2.1.1.2.","title":"Next generation computing: Advanced and secure computing systems and technologies, including cloud computing","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | Next generation computing: Advanced and secure computing systems and technologies, including cloud computing","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | Next generation computing: Advanced and secure computing systems and technologies, including cloud computing"} -{"code":"H2020-EU.3.5.5.","title":"Developing comprehensive and sustained global environmental observation and information systems","shortTitle":"Environmental observation and information systems","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Developing comprehensive and sustained global environmental observation and information systems","classification_short":"Societal Challenges | Climate and environment | Environmental observation and information systems"} -{"code":"H2020-EU.3.1.7.10.","title":"Cancer","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Cancer","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Cancer"} -{"code":"H2020-EU.3.4.8.2.","title":"Innovation Programme 2: Advanced traffic management and control systems","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Shift2Rail JU | Innovation Programme 2: Advanced traffic management and control systems","classification_short":"Societal Challenges | Transport | Shift2Rail JU | Innovation Programme 2: Advanced traffic management and control systems"} -{"code":"H2020-EU.5.e.","title":"Develop the accessibility and the use of the results of publicly-funded research","shortTitle":"","language":"en","classification":"SCIENCE WITH AND FOR SOCIETY | Develop the accessibility and the use of the results of publicly-funded research","classification_short":"Science with and for Society | Develop the accessibility and the use of the results of publicly-funded research"} -{"code":"H2020-EU.3.4.4.","title":"Socio-economic and behavioural research and forward looking activities for policy making","shortTitle":"Socio-economic and behavioural research","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Socio-economic and behavioural research and forward looking activities for policy making","classification_short":"Societal Challenges | Transport | Socio-economic and behavioural research"} -{"code":"H2020-EU.3.3.2.","title":"Low-cost, low-carbon energy supply","shortTitle":"Low-cost, low-carbon energy supply","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Low-cost, low-carbon energy supply","classification_short":"Societal Challenges | Energy | Low-cost, low-carbon energy supply"} -{"code":"H2020-EU.3.4.2.2.","title":"Substantial improvements in the mobility of people and freight","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | Better mobility, less congestion, more safety and security | Substantial improvements in the mobility of people and freight","classification_short":"Societal Challenges | Transport | Mobility, safety and security | Substantial improvements in the mobility of people and freight"} -{"code":"H2020-EU.3.5.6.","title":"Cultural heritage","shortTitle":"Cultural heritage","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Cultural heritage","classification_short":"Societal Challenges | Climate and environment | Cultural heritage"} -{"code":"H2020-EU.3.5.3.","title":"Ensuring the sustainable supply of non-energy and non-agricultural raw materials","shortTitle":"Supply of non-energy and non-agricultural raw materials","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Ensuring the sustainable supply of non-energy and non-agricultural raw materials","classification_short":"Societal Challenges | Climate and environment | Supply of non-energy and non-agricultural raw materials"} -{"code":"H2020-EU.2.1.5.2.","title":"Technologies enabling energy-efficient systems and energy-efficient buildings with a low environmental impact","shortTitle":"Technologies enabling energy-efficient systems and buildings","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced manufacturing and processing | Technologies enabling energy-efficient systems and energy-efficient buildings with a low environmental impact","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced manufacturing and processing | Technologies enabling energy-efficient systems and buildings"} -{"code":"H2020-EU.1.4.1.2.","title":"Integrating and opening existing national and regional research infrastructures of European interest","shortTitle":"","language":"en","classification":"Excellent science | Research Infrastructures | Developing the European research infrastructures for 2020 and beyond | Integrating and opening existing national and regional research infrastructures of European interest","classification_short":"Excellent Science | Research Infrastructures | Research infrastructures for 2020 and beyond | Integrating and opening existing national and regional research infrastructures of European interest"} -{"code":"H2020-EU.3.7.8.","title":"Support the Union's external security policies including through conflict prevention and peace-building","shortTitle":"","language":"en","classification":"Societal challenges | Secure societies - Protecting freedom and security of Europe and its citizens | Support the Union's external security policies including through conflict prevention and peace-building","classification_short":"Societal Challenges | Secure societies | Support the Union's external security policies including through conflict prevention and peace-building"} -{"code":"H2020-EU.2.1.1.1.","title":"A new generation of components and systems: Engineering of advanced embedded and energy and resource efficient components and systems","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | A new generation of components and systems: Engineering of advanced embedded and energy and resource efficient components and systems","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | A new generation of components and systems: Engineering of advanced embedded and energy and resource efficient components and systems"} -{"code":"H2020-EU.1.1.","title":"EXCELLENT SCIENCE - European Research Council (ERC)","shortTitle":"European Research Council (ERC)","language":"en","classification":"Excellent science | European Research Council (ERC)","classification_short":"Excellent Science | European Research Council (ERC)"} -{"code":"H2020-EU.3.4.5.6.","title":"ITD Systems","shortTitle":"","language":"en","classification":"Societal challenges | Smart, Green And Integrated Transport | CLEANSKY2 | ITD Systems","classification_short":"Societal Challenges | Transport | CLEANSKY2 | ITD Systems"} -{"code":"H2020-EU.6.","title":"NON-NUCLEAR DIRECT ACTIONS OF THE JOINT RESEARCH CENTRE (JRC)","shortTitle":"Joint Research Centre (JRC) non-nuclear direct actions","language":"en","classification":"NON-NUCLEAR DIRECT ACTIONS OF THE JOINT RESEARCH CENTRE (JRC)","classification_short":"Joint Research Centre (JRC) non-nuclear direct actions"} -{"code":"H2020-EU.3.2.5.1.","title":"Climate change impact on marine ecosystems and maritime economy","shortTitle":"","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Cross-cutting marine and maritime research | Climate change impact on marine ecosystems and maritime economy","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Cross-cutting marine and maritime research | Climate change impact on marine ecosystems and maritime economy"} -{"code":"H2020-Euratom-1.2.","title":"Contribute to the development of solutions for the management of ultimate nuclear waste","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Contribute to the development of solutions for the management of ultimate nuclear waste","classification_short":"Euratom | Indirect actions | Contribute to the development of solutions for the management of ultimate nuclear waste"} -{"code":"H2020-EU.3.1.7.11.","title":"Rare/Orphan Diseases","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Rare/Orphan Diseases","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Rare/Orphan Diseases"} -{"code":"H2020-EU.3.1.4.1.","title":"Active ageing, independent and assisted living","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Active ageing and self-management of health | Active ageing, independent and assisted living","classification_short":"Societal Challenges | Health | Active ageing and self-management of health | Active ageing, independent and assisted living"} -{"code":"H2020-Euratom-1.4.","title":"Foster radiation protection","shortTitle":"","language":"en","classification":"Euratom | Indirect actions | Foster radiation protection","classification_short":"Euratom | Indirect actions | Foster radiation protection"} -{"code":"H2020-EU.2.2.2.","title":"The Equity facility providing equity finance for R&I: 'Union equity instruments for research and innovation'","shortTitle":"Equity facility","language":"en","classification":"Industrial leadership | Access to risk finance | The Equity facility providing equity finance for R&I: 'Union equity instruments for research and innovation'","classification_short":"Industrial Leadership | Access to risk finance | Equity facility"} -{"code":"H2020-EU.3.3.8.","title":"FCH2 (energy objectives)","shortTitle":"","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | FCH2 (energy objectives)","classification_short":"Societal Challenges | Energy | FCH2 (energy objectives)"} -{"code":"H2020-EU.3.2.3.","title":"Unlocking the potential of aquatic living resources","shortTitle":"Potential of aquatic living resources","language":"en","classification":"Societal challenges | Food security, sustainable agriculture and forestry, marine, maritime and inland water research, and the bioeconomy | Unlocking the potential of aquatic living resources","classification_short":"Societal Challenges | Food, agriculture, forestry, marine research and bioeconomy | Potential of aquatic living resources"} -{"code":"H2020-EU.3.5.2.3.","title":"Provide knowledge and tools for effective decision making and public engagement","shortTitle":"","language":"en","classification":"Societal challenges | Climate action, Environment, Resource Efficiency and Raw Materials | Protection of the environment, sustainable management of natural resources, water, biodiversity and ecosystems | Provide knowledge and tools for effective decision making and public engagement","classification_short":"Societal Challenges | Climate and environment | Protection of the environment | Provide knowledge and tools for effective decision making and public engagement"} -{"code":"H2020-EU.3.3.6.","title":"Robust decision making and public engagement","shortTitle":"Robust decision making and public engagement","language":"en","classification":"Societal challenges | Secure, clean and efficient energy | Robust decision making and public engagement","classification_short":"Societal Challenges | Energy | Robust decision making and public engagement"} -{"code":"H2020-EU.3.1.7.2.","title":"Osteoarthritis","shortTitle":"","language":"en","classification":"Societal challenges | Health, demographic change and well-being | Innovative Medicines Initiative 2 (IMI2) | Osteoarthritis","classification_short":"Societal Challenges | Health | Innovative Medicines Initiative 2 (IMI2) | Osteoarthritis"} -{"code":"H2020-EU.2.1.1.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies - Information and Communication Technologies (ICT)","shortTitle":"Information and Communication Technologies","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT)","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies"} -{"code":"H2020-EU.2.1.6.2.","title":"Enabling advances in space technology","shortTitle":"Enabling advances in space technology","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Space | Enabling advances in space technology","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Space | Enabling advances in space technology"} -{"code":"H2020-EU.2.1.1.4.","title":"Content technologies and information management: ICT for digital content, cultural and creative industries","shortTitle":"","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Information and Communication Technologies (ICT) | Content technologies and information management: ICT for digital content, cultural and creative industries","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Information and Communication Technologies | Content technologies and information management: ICT for digital content, cultural and creative industries"} -{"code":"H2020-EU.2.1.5.4.","title":"New sustainable business models","shortTitle":"New sustainable business models","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Advanced manufacturing and processing | New sustainable business models","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Advanced manufacturing and processing | New sustainable business models"} -{"code":"H2020-EU.2.1.4.","title":"INDUSTRIAL LEADERSHIP - Leadership in enabling and industrial technologies – Biotechnology","shortTitle":"Biotechnology","language":"en","classification":"Industrial leadership | Leadership in enabling and industrial technologies | Biotechnology","classification_short":"Industrial Leadership | Leadership in enabling and industrial technologies (LEIT) | Biotechnology"} \ No newline at end of file diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json.gz new file mode 100644 index 000000000..2ce7c72f2 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/preparedProgramme_whole.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_h2020_programme.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_h2020_programme.json.gz new file mode 100644 index 000000000..986cf2a89 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_h2020_programme.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json deleted file mode 100644 index ca2c0f165..000000000 --- a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json +++ /dev/null @@ -1,17 +0,0 @@ -{"id":"894593","programme":"H2020-EU.3.4.7.","topics":"SESAR-ER4-31-2019"} -{"id":"897004","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"896300","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"892890","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"886828","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"886776","programme":"H2020-EU.2.1.4.","topics":"BBI-2019-SO3-D4"} -{"id":"886776","programme":"H2020-EU.3.2.6.","topics":"BBI-2019-SO3-D4"} -{"id":"895426","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"898218","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"893787","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"896189","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"891624","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"887259","programme":"H2020-EU.2.1.4.","topics":"BBI-2019-SO3-D3"} -{"id":"887259","programme":"H2020-EU.3.2.6.","topics":"BBI-2019-SO3-D3"} -{"id":"892834","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"895716","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"883730","programme":"H2020-EU.1.1.","topics":"ERC-2019-ADG"} \ No newline at end of file diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json.gz new file mode 100644 index 000000000..93aa69b90 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/prepared_projects.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv deleted file mode 100644 index 6a9c855a0..000000000 --- a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv +++ /dev/null @@ -1,25 +0,0 @@ -rcn;code;title;shortTitle;language -664331;H2020-EU.3.3.2.;Un approvisionnement en électricité à faible coût et à faibles émissions de carbone;Low-cost, low-carbon energy supply;fr -664355;H2020-EU.3.3.7.;Absorción por el mercado de la innovación energética - explotación del Programa Energía Inteligente - Europa Europe;Market uptake of energy innovation;es -664323;H2020-EU.3.3.1.;Ridurre il consumo di energia e le emissioni di carbonio grazie all'uso intelligente e sostenibile;Reducing energy consumption and carbon footprint;it -664233;H2020-EU.2.3.2.3.;Wsparcie innowacji rynkowych;Supporting market-driven innovation;pl -664199;H2020-EU.2.1.5.1.;Tecnologías para las fábricas del futuro;Technologies for Factories of the Future;es -664235;H2020-EU.3.;PRIORITÉ «Défis de société»;Societal Challenges;fr -664355;H2020-EU.3.3.7.;"Assorbimento di mercato dell'innovazione energetica - iniziative fondate sul programma ""Energia intelligente - Europa""";Market uptake of energy innovation;it -664355;H2020-EU.3.3.7.;"Markteinführung von Energieinnovationen – Aufbau auf ""Intelligente Energie – Europa";Market uptake of energy innovation;de -664235;H2020-EU.3.;"PRIORIDAD ""Retos de la sociedad""";Societal Challenges;es -664231;H2020-EU.2.3.2.2.;Mejorar la capacidad de innovación de las PYME;Enhancing the innovation capacity of SMEs;es -664223;H2020-EU.2.3.;LIDERAZGO INDUSTRIAL - Innovación en la pequeña y mediana empresa;Innovation in SMEs;es -664323;H2020-EU.3.3.1.;Réduire la consommation d'énergie et l'empreinte carbone en utilisant l'énergie de manière intelligente et durable;Reducing energy consumption and carbon footprint;fr -664323;H2020-EU.3.3.1.;Reducir el consumo de energía y la huella de carbono mediante un uso inteligente y sostenible;Reducing energy consumption and carbon footprint;es -664215;H2020-EU.2.1.6.4.;Beitrag der europäischen Forschung zu internationalen Weltraumpartnerschaften;Research in support of international space partnerships;de -664213;H2020-EU.2.1.6.3.;Permettere lo sfruttamento dei dati spaziali;;it -664213;H2020-EU.2.1.6.3.;Permettre l'exploitation des données spatiales;Enabling exploitation of space data;fr -664231;H2020-EU.2.3.2.2.;Zwiększenie zdolności MŚP pod względem innowacji;Enhancing the innovation capacity of SMEs;pl -664231;H2020-EU.2.3.2.2.;Rafforzare la capacità di innovazione delle PMI;Enhancing the innovation capacity of SMEs;it -664213;H2020-EU.2.1.6.3.;Grundlagen für die Nutzung von Weltraumdaten;Enabling exploitation of space data;de -664211;H2020-EU.2.1.6.2.;Favorecer los avances en las tecnologías espaciales;Enabling advances in space technology;es -664209;H2020-EU.2.1.6.1.;Assurer la compétitivité et l'indépendance de l'Europe et promouvoir l'innovation dans le secteur spatial européen;Competitiveness, non-dependence and innovation;fr -664231;H2020-EU.2.3.2.2.;Renforcement de la capacité d'innovation des PME;Enhancing the innovation capacity of SMEs;fr -664203;H2020-EU.2.1.5.3.;Tecnologías sostenibles, eficientes en su utilización de recursos y de baja emisión de carbono en las industrias de transformación de gran consumo energético;Sustainable, resource-efficient and low-carbon technologies in energy-intensive process industries;es -664103;H2020-EU.1.2.1.;FET Open;FET Open;es \ No newline at end of file diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv.gz new file mode 100644 index 000000000..6fab87a02 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/programme.csv.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_nld.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_nld.json.gz new file mode 100644 index 000000000..2b3763833 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_nld.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json deleted file mode 100644 index ae1b7cb82..000000000 --- a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json +++ /dev/null @@ -1,16 +0,0 @@ -{"id":"894593","programme":"H2020-EU.3.4.7.","topics":"SESAR-ER4-31-2019"} -{"id":"897004","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"896300","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"892890","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"886828","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"886776","programme":"H2020-EU.2.1.4.;H2020-EU.3.2.6.","topics":"BBI-2019-SO3-D4"} -{"id":"895426","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"898218","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"893787","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"896189","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"891624","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"887259","programme":"H2020-EU.2.1.4.;H2020-EU.3.2.6.","topics":"BBI-2019-SO3-D3"} -{"id":"892834","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"895716","programme":"H2020-EU.1.3.2.","topics":"MSCA-IF-2019"} -{"id":"954782","programme":"H2020-EU.3.;H2020-EU.2.3.;H2020-EU.2.1.","topics":"EIC-SMEInst-2018-2020"} -{"id":"101003374","programme":"H2020-EU.4.","topics":"WF-02-2019"} \ No newline at end of file diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json.gz new file mode 100644 index 000000000..ae747c19c Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/projects_subset.json.gz differ diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics.json b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics.json new file mode 100644 index 000000000..91fdaa38e --- /dev/null +++ b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics.json @@ -0,0 +1,139653 @@ +[{ "projectID": 886988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 947908, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 781123, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101007963, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 854460, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101033666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 753045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 714150, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 815698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890844, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792495, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 756826, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 787263, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 837614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780819, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 101033173, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892757, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855496, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723906, + "title": "Zero-defect strategies at system level for multi-stage manufacturing in production lines", + "topic": "FOF-03-2016" +},{ + "projectID": 731535, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 101016726, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 886461, + "title": "Innovative processing for flight practices improvement", + "topic": "JTI-CS2-2019-CfP10-SYS-01-16" +},{ + "projectID": 819603, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 815724, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001062, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 896092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702681, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 786713, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 101008060, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 833964, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 956394, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 836101, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 871875, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 795206, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 674979, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 674119, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 812788, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 729909, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 824988, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 791022, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101007784, + "title": "Scalability and limitations of Hybrid Electric concepts up to large commercial aircraft", + "topic": "JTI-CS2-2020-CFP11-THT-14" +},{ + "projectID": 854926, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 865819, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 838188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691546, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 815749, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806911, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 758027, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 957345, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 965417, + "title": "Digital diagnostics – developing tools for supporting clinical decisions by integrating various diagnostic data", + "topic": "SC1-BHC-06-2020" +},{ + "projectID": 790083, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 797850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 861782, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101001332, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 803150, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 854472, + "title": "Community building and roadmapping for high performance and smart electrochemical energy storage", + "topic": "FETPROACT-04-2019" +},{ + "projectID": 824717, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645452, + "title": "Cracking the language barrier", + "topic": "ICT-17-2014" +},{ + "projectID": 678017, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 835284, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101025672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816044, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851538, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 799062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101004221, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 757360, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 729608, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101020005, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 964492, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 880240, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 869951, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 786922, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 640626, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 817566, + "title": "Analytical tools and models to support policies related to agriculture and food", + "topic": "RUR-04-2018-2019" +},{ + "projectID": 828666, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002198, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 838945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 946013, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767625, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 101001890, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 884676, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 791874, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 892919, + "title": "Safety and Resilience", + "topic": "SESAR-ER4-06-2019" +},{ + "projectID": 660031, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887978, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 770531, + "title": "Better integration of evidence on the impact of research and innovation in policy making", + "topic": "CO-CREATION-08-2016-2017" +},{ + "projectID": 815790, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957508, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 801522, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 949388, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 867438, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 101003435, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 777067, + "title": "Cloud Computing", + "topic": "EUB-01-2017" +},{ + "projectID": 858101, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101019982, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 741945, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 961108, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101037090, + "title": "Fostering regulatory science to address combined exposures to industrial chemicals and pharmaceuticals: from science to evidence-based policies", + "topic": "LC-GD-8-2-2020" +},{ + "projectID": 656294, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653323, + "title": "Supply Chain Security topic 2: Technologies for inspections of large volume freight", + "topic": "BES-09-2014" +},{ + "projectID": 828400, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700692, + "title": "Information driven Cyber Security Management", + "topic": "DS-04-2015" +},{ + "projectID": 885818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 761753, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 790958, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 890477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 783664, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 845320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945536, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 827712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 826494, + "title": "Exploiting the full potential of in-silico medicine research for personalised diagnostics and therapies in cloud-based environments", + "topic": "SC1-DTH-07-2018" +},{ + "projectID": 896742, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 736722, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 648785, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 721815, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 676455, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 963527, + "title": "Hybridisation of battery systems for stationary energy storage", + "topic": "LC-BAT-9-2020" +},{ + "projectID": 747831, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 636932, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 101001784, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 792919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852686, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 820805, + "title": "ICT enabled, sustainable and affordable residential building construction, design to end of life (IA 50%)", + "topic": "LC-EEB-06-2018-20" +},{ + "projectID": 876869, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 678316, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 734687, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 707345, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 720115, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 101027010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 671625, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 896761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 847378, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 889026, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 964363, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 833742, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 861891, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 746530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658170, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 777154, + "title": "Cloud Computing", + "topic": "EUB-01-2017" +},{ + "projectID": 101020573, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101001691, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 686355, + "title": "Cost Reduction On Composite Structure Assembly - Definition And Development Of An Inspection Tool To Characterize Inner Surface Hole Quality", + "topic": "JTI-CS2-2014-CFP01-LPA-02-02" +},{ + "projectID": 838535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 773445, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 945121, + "title": "Safety margins determination for design basis-exceeding external hazards", + "topic": "NFRP-2019-2020-03" +},{ + "projectID": 791225, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 787887, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 863850, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 802777, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 828176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 803880, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 960667, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648892, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 956832, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 798129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704557, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 753219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 730294, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 101027956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 826472, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774256, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 647573, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 802554, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 889184, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793660, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 848158, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 758985, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 951424, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101028700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644096, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 965044, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 868775, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732463, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 707636, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 952401, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 816329, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957254, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 819127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101001267, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 825403, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 702285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 868697, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001118, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101031081, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 848645, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 855712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864149, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892421, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 688989, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 866435, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 895526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896248, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 763959, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 659826, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 834142, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 740233, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 828940, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 688139, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 743519, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101038096, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101007865, + "title": "Thermoplastic wheel for electrical Environmental Control System", + "topic": "JTI-CS2-2020-CFP11-SYS-02-62" +},{ + "projectID": 782211, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 842795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 753021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 732194, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 838037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 867004, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744623, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 860768, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 948493, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 965341, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 854871, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832681, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 954575, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850078, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826589, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 101007638, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 892618, + "title": "Digitalisation and Automation principles for ATM", + "topic": "SESAR-ER4-01-2019" +},{ + "projectID": 893136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871464, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 635491, + "title": "Delivering the sub-sea technologies for new services at sea", + "topic": "BG-06-2014" +},{ + "projectID": 101002724, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 818367, + "title": "Sustainable European aquaculture 4.0: nutrition and breeding", + "topic": "DT-BG-04-2018-2019" +},{ + "projectID": 876160, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864686, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 894238, + "title": "Digitalisation and Automation principles for ATM", + "topic": "SESAR-ER4-01-2019" +},{ + "projectID": 101022466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 877069, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827457, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 863802, + "title": "Software engine for multi-criteria decision support in civil aircraft flight management", + "topic": "JTI-CS2-2018-CfP09-SYS-01-12" +},{ + "projectID": 781086, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 732363, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 827583, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 634476, + "title": "Traditional resources for agricultural diversity and the food chain", + "topic": "SFS-07a-2014" +},{ + "projectID": 806124, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 878077, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833399, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 698959, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 826990, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744972, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 848077, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 952279, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 770841, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 953163, + "title": "Creating an open market place for industrial data (RIA)", + "topic": "DT-NMBP-40-2020" +},{ + "projectID": 101030728, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833749, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 873395, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101038092, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 871371, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 674868, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 758210, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101006631, + "title": "Advanced light materials and their production processes for automotive applications", + "topic": "LC-GV-06-2020" +},{ + "projectID": 637277, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 957112, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 739781, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 800130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882771, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 736776, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 856015, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 833276, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 833460, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 871330, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 827534, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875565, + "title": "Modelling and simulation for Redox Flow Battery development", + "topic": "LC-BAT-3-2019" +},{ + "projectID": 786741, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 828551, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960327, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888874, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899880, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101007595, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 860630, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 746667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772331, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 643647, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 945528, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 751893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 861137, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 819789, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 945304, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 764785, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 881419, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694888, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 642661, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 826060, + "title": "H2020-ECSEL-2018-2-RIA-Special-Topic", + "topic": "ECSEL-2018-2-RIA-Special-Topic" +},{ + "projectID": 956085, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 899040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956770, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 831830, + "title": "Innovative quality inspection methods for CFRP primary structural parts", + "topic": "JTI-CS2-2018-CfP08-SYS-02-51" +},{ + "projectID": 101029653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703446, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 762074, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 783006, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 767561, + "title": "Novel design and predictive maintenance technologies for increased operating life of production systems", + "topic": "FOF-09-2017" +},{ + "projectID": 834861, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 846775, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659104, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 863463, + "title": "Prototyping new innovative services", + "topic": "INFRAEOSC-02-2019" +},{ + "projectID": 888692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 690494, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 759419, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 842472, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 957204, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 748094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 758370, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 948516, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 692819, + "title": "Meeting new societal needs by using emerging technologies in the public sector", + "topic": "EURO-6-2015" +},{ + "projectID": 897276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 815914, + "title": "Application of machine learning techniques to enableenhance aircraft performances database and facilitate mission optimization objectives", + "topic": "JTI-CS2-2017-CfP07-SYS-01-08" +},{ + "projectID": 840550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 866274, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101029903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 850221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776115, + "title": "EO Big Data Shift", + "topic": "EO-2-2017" +},{ + "projectID": 702530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101004214, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 744988, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 949085, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 835672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690862, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 956071, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 867915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826827, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 765549, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 636892, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 101025608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 688201, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 895747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 780069, + "title": "Tools for smart digital content in the creative industries", + "topic": "ICT-20-2017" +},{ + "projectID": 723254, + "title": "Transport infrastructure innovation to increase the transport system safety at modal and intermodal level (including nodes and interchanges)", + "topic": "MG-3.4-2016" +},{ + "projectID": 808225, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 750346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 837234, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101038046, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 836886, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101015857, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 101008140, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 663269, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101018156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835695, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804636, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 870747, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 827452, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019206, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 747822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688191, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 694277, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 732003, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 101030668, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 827011, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 770420, + "title": "Better integration of evidence on the impact of research and innovation in policy making", + "topic": "CO-CREATION-08-2016-2017" +},{ + "projectID": 826855, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666981, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 836752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638743, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 791913, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 850437, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 854774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019375, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101017109, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 829467, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815564, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887573, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815073, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882365, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851758, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 957029, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 788506, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 798480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694980, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 867386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644862, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 726090, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 651452, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 746442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661180, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 827131, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 640550, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 804371, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 883284, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 872944, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 101017562, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 892502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755617, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 899667, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 876280, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853443, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 960826, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952071, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 739709, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 648982, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 856405, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 887220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002742, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 890169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956086, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 965406, + "title": "Advancing the safety assessment of chemicals without the use of animal testing", + "topic": "SC1-BHC-11-2020" +},{ + "projectID": 867971, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949316, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 688930, + "title": "Demonstrating the concept of 'Citizen Observatories'", + "topic": "SC5-17-2015" +},{ + "projectID": 101028291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 805223, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 824306, + "title": "Virtual product development and production of all types of electrified vehicles and components", + "topic": "LC-GV-02-2018" +},{ + "projectID": 807987, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 820148, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 832989, + "title": "Cybersecurity in the Electrical Power and Energy System (EPES): an armour against cyber and privacy attacks and data breaches", + "topic": "SU-DS04-2018-2020" +},{ + "projectID": 695403, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 761758, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 723491, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 766186, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 718448, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 861888, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 801426, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 686053, + "title": "Novel materials by design for substituting critical materials", + "topic": "NMP-23-2015" +},{ + "projectID": 101008085, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101017142, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 868056, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854702, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956200, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 945155, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 682859, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101004761, + "title": "Innovation pilots", + "topic": "INFRAINNOV-04-2020" +},{ + "projectID": 746593, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 695223, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 642121, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 788616, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 750527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 858092, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 740235, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 732497, + "title": "Future Internet Experimentation - Building a European experimental Infrastructure", + "topic": "ICT-13-2016" +},{ + "projectID": 963992, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 793574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 643161, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 648667, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 860436, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101024806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644209, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 741134, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 949821, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 952215, + "title": "Towards a vibrant European network of AI excellence centres", + "topic": "ICT-48-2020" +},{ + "projectID": 706208, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701318, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657178, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 803684, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788405, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101023769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101021085, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 682474, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 900018, + "title": "Ageing phenomena of components and structures and operational issues", + "topic": "NFRP-2019-2020-01" +},{ + "projectID": 852677, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 865007, + "title": "Innovative low noise fan stator technologies for 2030+ powerplants", + "topic": "JTI-CS2-2018-CfP09-LPA-01-60" +},{ + "projectID": 727112, + "title": "An empirically informed European theory of justice and fairness", + "topic": "REV-INEQUAL-01-2016" +},{ + "projectID": 747336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 675546, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 815044, + "title": "Multidisciplinary and collaborative aircraft design tools and processes", + "topic": "MG-3-1-2018" +},{ + "projectID": 659791, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 744349, + "title": "Biopolymers with advanced functionalities for high performance applications", + "topic": "BBI-2016-R07" +},{ + "projectID": 771509, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 640079, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 655814, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656971, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 825741, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 846655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707141, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758843, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 658764, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 736899, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 733206, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 655310, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 758813, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 871740, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 101027513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787282, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 834385, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 864290, + "title": "Rear End Aerodynamic and Aeroelastic Studies", + "topic": "JTI-CS2-2018-CfP09-LPA-01-63" +},{ + "projectID": 670668, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 703162, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772957, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 787173, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 953489, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 703204, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 115974, + "title": "Diabetic Kidney Disease Biomarkers (DKD-BM)", + "topic": "IMI2-2015-05-02" +},{ + "projectID": 837894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101020961, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 715262, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 690978, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 794053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704679, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 882842, + "title": "Experimental and numerical noise assessment of distributed propulsion configurations", + "topic": "JTI-CS2-2019-CFP10-THT-08" +},{ + "projectID": 799974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018523, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 787999, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 860103, + "title": "Advancements in aerodynamics and innovative propulsion systems for quieter and greener aircrafts", + "topic": "LC-MG-1-5-2019" +},{ + "projectID": 883786, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 761727, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 777394, + "title": "Personalised medicine approaches in autism spectrum disorders", + "topic": "IMI2-2016-10-08" +},{ + "projectID": 633328, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 701876, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835279, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 732515, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 764840, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 898460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101008913, + "title": "Technology Development for Railway Systems Asset Management (TD3.6)", + "topic": "S2R-OC-IP3-02-2020" +},{ + "projectID": 803665, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 799276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 671551, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 815301, + "title": "Renewable energy system integrated at the building scale", + "topic": "LC-SC3-RES-4-2018" +},{ + "projectID": 640749, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 743093, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 655723, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101024393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 688941, + "title": "Experimental Platforms", + "topic": "EUB-3-2015" +},{ + "projectID": 788203, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 818697, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 723367, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 755500, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 746045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 731591, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 703539, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 788563, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 765472, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 639594, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 690811, + "title": "International cooperation in aeronautics with Japan", + "topic": "MG-1.8-2015" +},{ + "projectID": 759187, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 964596, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 779882, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 703193, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832346, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 857201, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 897218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 803486, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 831927, + "title": "High fidelity power effects aerodynamics at High Reynolds conditions in Regional turboprop configuration", + "topic": "JTI-CS2-2018-CfP08-REG-02-05" +},{ + "projectID": 655682, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794020, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 803718, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 798583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020715, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 875192, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 722433, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 761898, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 840917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 843291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 871900, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 828753, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 964728, + "title": "Addressing low vaccine uptake", + "topic": "SC1-BHC-33-2020" +},{ + "projectID": 731667, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 675441, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 955253, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 765256, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 825771, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 821963, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 101024558, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748371, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734857, + "title": "Addressing the urgent research gaps against the Zika virus and other emerging threats in Latin America", + "topic": "SC1-PM-22-2016" +},{ + "projectID": 101003173, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 754589, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 703438, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 704227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679849, + "title": "Improving the preservation and sustainable exploitation of Atlantic marine ecosystems", + "topic": "BG-01-2015" +},{ + "projectID": 656490, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 761508, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 860538, + "title": "Advancements in aerodynamics and innovative propulsion systems for quieter and greener aircrafts", + "topic": "LC-MG-1-5-2019" +},{ + "projectID": 840000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 676258, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 800303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694188, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 639291, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 847984, + "title": "Implementation research for maternal and child health", + "topic": "SC1-BHC-19-2019" +},{ + "projectID": 948498, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 770640, + "title": "Strengthening Europe's position in the global context: science diplomacy and intercultural relations", + "topic": "ENG-GLOBALLY-01-2017" +},{ + "projectID": 669306, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 802628, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 691735, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2015" +},{ + "projectID": 792439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886552, + "title": "Ultra-High Aspect ratio wings", + "topic": "JTI-CS2-2019-CFP10-THT-07" +},{ + "projectID": 101019480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820474, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 843672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638873, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 873207, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 636053, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 101023251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 638241, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 648239, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 645361, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 101031697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701972, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 856416, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 869550, + "title": "Human dynamics of climate change", + "topic": "LC-CLA-05-2019" +},{ + "projectID": 652638, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2014" +},{ + "projectID": 802905, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 872869, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 656070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 652890, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 701355, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 675115, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 851955, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 817581, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 662133, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-02-2014" +},{ + "projectID": 633212, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 851725, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 636307, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 653426, + "title": "Privacy", + "topic": "DS-01-2014" +},{ + "projectID": 678371, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 957736, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 101036029, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 101021566, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 725042, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 676027, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 892242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865515, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101023270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 648810, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101030750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899670, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 635900, + "title": "I²I – Intelligent Infrastructure", + "topic": "MG-2.1-2014" +},{ + "projectID": 745844, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 740900, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 705165, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 837197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862389, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 762057, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 656830, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 800983, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 645421, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 669545, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 777596, + "title": "Smart metering and asset management of railway systems", + "topic": "S2R-OC-IP3-01-2017" +},{ + "projectID": 738130, + "title": "High cycle fatigue prediction methodology for fiber reinforced laminates for aircraft structures in CROR environment – development and validation", + "topic": "JTI-CS2-2016-CFP03-LPA-01-12" +},{ + "projectID": 839636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 641039, + "title": "Quantum simulation", + "topic": "FETPROACT-3-2014" +},{ + "projectID": 679355, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 745476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688127, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 846458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949378, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 668954, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 665826, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2014" +},{ + "projectID": 671650, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 749871, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 682253, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101026955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 755371, + "title": "Research and innovation on the overall management of radioactive waste other than geological disposal.", + "topic": "NFRP-7" +},{ + "projectID": 740222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101021207, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 949417, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 810652, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 834631, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 813360, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 721358, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101023978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 691213, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 843720, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 871428, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 722871, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 689617, + "title": "Digital representation of health data to improve disease diagnosis and treatment", + "topic": "PHC-30-2015" +},{ + "projectID": 793799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 956414, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 866559, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 892454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727296, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 721567, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 693642, + "title": "The European Union's contribution to global development: in search of greater policy coherence", + "topic": "INT-04-2015" +},{ + "projectID": 722687, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 677055, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 665926, + "title": "Ethics in Research: Promoting Integrity", + "topic": "GARRI-5-2014" +},{ + "projectID": 101023501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 709637, + "title": "Supporting structural change in research organisations to promote Responsible Research and Innovation", + "topic": "ISSI-5-2015" +},{ + "projectID": 101022128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101016448, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 755523, + "title": "Impacts of low dose radiation exposure", + "topic": "NFRP-9" +},{ + "projectID": 812917, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 642973, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 866085, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 951388, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 895220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 957536, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 795867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 884505, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 853109, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 861618, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 839739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 874739, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 700843, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 821511, + "title": "Genome-Environment Interactions in Inflammatory Skin Disease", + "topic": "IMI2-2017-13-02" +},{ + "projectID": 758508, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 732170, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 702794, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 633515, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 824096, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 945679, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 728003, + "title": "Crop diversification systems for the delivery of food, feed, industrial products and ecosystems services - from farm benefits to value-chain organisation", + "topic": "RUR-06-2016" +},{ + "projectID": 951847, + "title": "Towards a vibrant European network of AI excellence centres", + "topic": "ICT-48-2020" +},{ + "projectID": 957545, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 641185, + "title": "Enabling decarbonisation of the fossil fuel-based power sector and energy intensive industry through CCS", + "topic": "LCE-15-2014" +},{ + "projectID": 700688, + "title": "Ethical/Societal Dimension Topic 4 - Investigating the role of social, psychological and economic aspects of the processes that lead to organized crime (including cyber related offenses), and terrorist networks and their impact on social cohesion", + "topic": "FCT-16-2015" +},{ + "projectID": 875609, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 654408, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2015" +},{ + "projectID": 965135, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 766840, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 865730, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 825310, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 852751, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 691158, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 834236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101006689, + "title": "Offshore wind basic science and balance of plant", + "topic": "LC-SC3-RES-31-2020" +},{ + "projectID": 101021272, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 956201, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 642260, + "title": "Economic assessment of climate change", + "topic": "SC5-03a-2014" +},{ + "projectID": 956270, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 732631, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 720952, + "title": "Analytical techniques and tools in support of nanomaterial risk assessment", + "topic": "NMBP-26-2016" +},{ + "projectID": 670478, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 676564, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 820495, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 101000494, + "title": "Epidemiology of non-EU-regulated contagious animal diseases: from integrated data collection to prioritisation", + "topic": "SFS-10-2020" +},{ + "projectID": 742579, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 679843, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101006512, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 642866, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 826417, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 856581, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 662177, + "title": "Supporting the implementation of the first-of-the-kind geological repositories", + "topic": "NFRP-06-2014" +},{ + "projectID": 795722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 813137, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 764547, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 813533, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 883077, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 815464, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 949717, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 899417, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 779942, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 844326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692468, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Australia, USA, Brazil, South Africa, Ukraine", + "topic": "INT-01-2015" +},{ + "projectID": 812580, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 636285, + "title": "I²I – Intelligent Infrastructure", + "topic": "MG-2.1-2014" +},{ + "projectID": 951541, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101024224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002047, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 843842, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707432, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 847456, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 874850, + "title": "Mining big data for early detection of infectious disease threats driven by climate change and other factors", + "topic": "SC1-BHC-13-2019" +},{ + "projectID": 101003687, + "title": "Advancing climate services", + "topic": "LC-CLA-12-2020" +},{ + "projectID": 637221, + "title": "Development of new self-inspection techniques and quality check methodologies for efficient construction processes", + "topic": "EeB-03-2014" +},{ + "projectID": 812780, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 678945, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101007205, + "title": "Demonstration of liquid hydrogen as a fuel for segments of the waterborne sector", + "topic": "FCH-01-6-2020" +},{ + "projectID": 101000392, + "title": "Prospecting aquatic and terrestrial natural biological resources for biologically active compounds", + "topic": "FNR-11-2020" +},{ + "projectID": 707635, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 665107, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 883985, + "title": "Development of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-16-2019" +},{ + "projectID": 743269, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 780788, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 817750, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 861976, + "title": "Alternative proteins for food and feed", + "topic": "LC-SFS-17-2019" +},{ + "projectID": 801041, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 654168, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 763677, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 101001077, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 724307, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101025762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644227, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 776280, + "title": "EO Big Data Shift", + "topic": "EO-2-2017" +},{ + "projectID": 731019, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 955515, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 786133, + "title": "Trans-national operation of the EURAXESS Service network", + "topic": "SwafS-24-2017" +},{ + "projectID": 101016970, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 725184, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 822030, + "title": "Satellite communication technologies", + "topic": "SPACE-15-TEC-2018" +},{ + "projectID": 817482, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 839235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786580, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 955334, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 770754, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101025386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 720694, + "title": "Biomaterials for diagnosis and treatment of demyelination disorders of the Central Nervous System", + "topic": "NMBP-09-2016" +},{ + "projectID": 797002, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 675206, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 691843, + "title": "Modelling and analysing the energy system, its transformation and impacts", + "topic": "LCE-21-2015" +},{ + "projectID": 786636, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 741431, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 702172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 899354, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 759998, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 801459, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 856559, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 813873, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 948220, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 770880, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 801464, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 679037, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 804307, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 842621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 953454, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 774124, + "title": "Permanent grassland – farming systems and policies", + "topic": "SFS-27-2017" +},{ + "projectID": 720964, + "title": "Analytical techniques and tools in support of nanomaterial risk assessment", + "topic": "NMBP-26-2016" +},{ + "projectID": 721027, + "title": "Advancing the integration of Materials Modelling in Business Processes to enhance effective industrial decision making and increase competitiveness", + "topic": "NMBP-23-2016" +},{ + "projectID": 803908, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 635536, + "title": "Synthetic biology – construction of organisms for new products and processes", + "topic": "BIOTEC-1-2014" +},{ + "projectID": 952002, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 787097, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 717054, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 890488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 679403, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 953348, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 800419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 812765, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101021746, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 764591, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 952039, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 654280, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 840232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 800981, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 676434, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 741883, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101028567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670603, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 726227, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 803363, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788607, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 668858, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 634453, + "title": "Evaluating existing screening and prevention programmes", + "topic": "PHC-06-2014" +},{ + "projectID": 776646, + "title": "Coordinating and supporting research and innovation actions on the decarbonisation of the EU economy", + "topic": "SC5-07-2017" +},{ + "projectID": 101018834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833540, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 815668, + "title": "Agri-Aqua Labs", + "topic": "SFS-30-2018-2019-2020" +},{ + "projectID": 641191, + "title": "Global Systems Science (GSS)", + "topic": "FETPROACT-1-2014" +},{ + "projectID": 101003104, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 694829, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 730964, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 101000309, + "title": "Healthy terrestrial livestock microbial ecosystems for sustainable production", + "topic": "SFS-02-2020" +},{ + "projectID": 680920, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 649532, + "title": "Resilient and sustainable economic and monetary union in Europe", + "topic": "EURO-1-2014" +},{ + "projectID": 670821, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 839730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 671623, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 101022657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832697, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 656753, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 676108, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 825322, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 834763, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 642029, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 654024, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 676063, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101031746, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101035541, + "title": "Euraxess Top IV - extension", + "topic": "IBA-SwafS-EURAXESS-Top-IV-2020" +},{ + "projectID": 768667, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 831804, + "title": "Innovative NOx Reduction Technologies", + "topic": "JTI-CS2-2018-CFP08-THT-01" +},{ + "projectID": 955356, + "title": "Enhancing coordination between Member States' actions in the area of infrastructure research with a particular focus on biodiversity and ameliorating environmental impacts and full automated infrastructure upgrade and maintenance", + "topic": "MG-2-10-2020" +},{ + "projectID": 780073, + "title": "Robotics Competition, coordination and support", + "topic": "ICT-28-2017" +},{ + "projectID": 714069, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 642372, + "title": "Structuring research on soil, land-use and land management in Europe", + "topic": "SC5-10b-2014" +},{ + "projectID": 821461, + "title": "Development of a system for pilot eye gaze and gesture tracking in the cockpit environment", + "topic": "JTI-CS2-2017-CfP07-SYS-01-07" +},{ + "projectID": 861145, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 766025, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 731287, + "title": "European Common Research and Innovation Agendas (ECRIAs) in support of the implementation of the SET Action Plan", + "topic": "LCE-33-2016" +},{ + "projectID": 955671, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 641762, + "title": "Making Earth Observation and Monitoring Data usable for ecosystem modelling and services", + "topic": "SC5-16-2014" +},{ + "projectID": 643381, + "title": "Vaccine development for poverty-related and neglected infectious diseases: tuberculosis", + "topic": "PHC-08-2014" +},{ + "projectID": 813596, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101008324, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 794207, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 810626, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 952152, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 645331, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 832535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833848, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 771503, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 964013, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 885531, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 674964, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 853309, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 956004, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101022487, + "title": "Low carbon industrial production using CCUS", + "topic": "LC-SC3-NZE-5-2020" +},{ + "projectID": 899683, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101002094, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 766030, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 891489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955393, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 860127, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 871391, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 955910, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 848794, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 956279, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 725039, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 956965, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 768610, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 871149, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 780997, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 863132, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 669908, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 780883, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 101022873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 720985, + "title": "Advanced materials solutions and architectures for high efficiency solar energy harvesting", + "topic": "NMBP-17-2016" +},{ + "projectID": 721916, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 801338, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 828826, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 769373, + "title": "Resilience to extreme (natural and man-made) events", + "topic": "MG-7-1-2017" +},{ + "projectID": 705970, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820419, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 818053, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 746150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 720776, + "title": "Microbial chassis platforms with optimized metabolic pathways for industrial innovations through systems biology", + "topic": "BIOTEC-03-2016" +},{ + "projectID": 761036, + "title": "Systems of materials characterisation for model, product and process optimisation", + "topic": "NMBP-07-2017" +},{ + "projectID": 818195, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 644128, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 744027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688166, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 634135, + "title": "Towards the energy efficient and emission free vessel", + "topic": "MG-4.1-2014" +},{ + "projectID": 101030516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003653, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 891514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884565, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 665718, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 727520, + "title": "Farming for tomorrow - developing an enabling environment for resilient and sustainable agricultural systems", + "topic": "SFS-31-2016" +},{ + "projectID": 101034816, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 815943, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 844867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 813786, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 955776, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 757565, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 642656, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101036849, + "title": "Restoring biodiversity and ecosystem services", + "topic": "LC-GD-7-1-2020" +},{ + "projectID": 101000232, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 956396, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 786461, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 764977, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 851816, + "title": "Optimising manufacturing and system operation", + "topic": "LC-SC3-RES-14-2019" +},{ + "projectID": 819573, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 810451, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 869192, + "title": "Negative emissions and land-use based mitigation assessment", + "topic": "LC-CLA-02-2019" +},{ + "projectID": 680358, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 949932, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 766719, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 894042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777107, + "title": "Personalised computer models and in-silico systems for well-being", + "topic": "SC1-PM-17-2017" +},{ + "projectID": 951970, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 949272, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101001652, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 732840, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 764810, + "title": "Measuring, monitoring and controlling the potential risks of subsurface operations related to CCS and unconventional hydrocarbons", + "topic": "LCE-27-2017" +},{ + "projectID": 633172, + "title": "Assessing the health risks of combined human exposure to multiple food-related toxic substances", + "topic": "SFS-12-2014" +},{ + "projectID": 703577, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820444, + "title": "Preparatory Actions for new FET Flagships", + "topic": "FETFLAG-01-2018" +},{ + "projectID": 951234, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 798411, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724344, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 897571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101034929, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 787652, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 788339, + "title": "Science4Refugees - Support to highly skilled refugee scientists", + "topic": "SwafS-26-2017" +},{ + "projectID": 791144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 765998, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 688007, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 679209, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 891009, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948029, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 812398, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 847012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825833, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 820437, + "title": "Preparatory Actions for new FET Flagships", + "topic": "FETFLAG-01-2018" +},{ + "projectID": 823802, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 713643, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 860413, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101026926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708349, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820699, + "title": "Standardisation in Synthetic Biology (CSA)", + "topic": "BIOTEC-01-2018" +},{ + "projectID": 722338, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 838031, + "title": "Advanced CO2 capture technologies", + "topic": "LC-SC3-NZE-1-2018" +},{ + "projectID": 748900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 890962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 680070, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 764626, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 101015960, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 703759, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 732642, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 885893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837089, + "title": "Modelling in support to the transition to a Low-Carbon Energy System in Europe", + "topic": "LC-SC3-CC-2-2018" +},{ + "projectID": 101024309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 822705, + "title": "Taking lessons from the practices of interdisciplinarity in Europe", + "topic": "GOVERNANCE-15-2018" +},{ + "projectID": 642067, + "title": "Moving towards a circular economy through industrial symbiosis", + "topic": "WASTE-1-2014" +},{ + "projectID": 862660, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 701994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101017915, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 731677, + "title": "Future Internet Experimentation - Building a European experimental Infrastructure", + "topic": "ICT-13-2016" +},{ + "projectID": 787478, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 743217, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 642007, + "title": "Enhancing mapping ecosystems and their services", + "topic": "SC5-10a-2014" +},{ + "projectID": 721185, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 949525, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 757608, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 801229, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 671000, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 874606, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 817720, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 825003, + "title": "Robotics - Digital Innovation Hubs (DIH)", + "topic": "DT-ICT-02-2018" +},{ + "projectID": 795053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 947923, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 892729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 820091, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 688652, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 875510, + "title": "Open access chemogenomics library and chemical probes for the druggable genome", + "topic": "IMI2-2019-17-02" +},{ + "projectID": 727284, + "title": "Teaming up for good: Exploiting the benefits of species diversity in cropping systems", + "topic": "SFS-02-2016" +},{ + "projectID": 812909, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 803491, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 634541, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 723954, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 821001, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 708407, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026226, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893209, + "title": "ATM Role in Intermodal Transport", + "topic": "SESAR-ER4-10-2019" +},{ + "projectID": 691728, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 746087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 641943, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 875524, + "title": "Advanced Redox Flow Batteries for stationary energy storage", + "topic": "LC-BAT-4-2019" +},{ + "projectID": 741863, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 949219, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 860898, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 734174, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 795121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101019414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788009, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 844006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715132, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 813294, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 875036, + "title": "Aviation operations impact on climate change (InCo flagship)", + "topic": "LC-MG-1-6-2019" +},{ + "projectID": 953783, + "title": "Network and traffic management for future mobility", + "topic": "MG-2-11-2020" +},{ + "projectID": 861316, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 690268, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 949781, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 633589, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 765289, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 642682, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 674899, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 824601, + "title": "Science4Refugees", + "topic": "SwafS-06-2018" +},{ + "projectID": 966718, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101016138, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 688421, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 792776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 688857, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 803063, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 752466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641122, + "title": "Quantum simulation", + "topic": "FETPROACT-3-2014" +},{ + "projectID": 101000371, + "title": "Emerging challenges for soil management", + "topic": "SFS-21-2020" +},{ + "projectID": 678841, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 787845, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 633974, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 862081, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 860517, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 888076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853257, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 772797, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 813999, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 833168, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 841316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862656, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101030352, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727246, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 722456, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 848698, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 688364, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 852044, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 964497, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 644412, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 948467, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 813424, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 669562, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 678880, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101001514, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 647901, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 681587, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 875585, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 706930, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758316, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 948047, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 964995, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 665934, + "title": "Trans-national operation of the EURAXESS Service network", + "topic": "SEAC-3-2014" +},{ + "projectID": 743121, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 866480, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 861061, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 855741, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 635201, + "title": "Soil quality and function", + "topic": "SFS-04-2014" +},{ + "projectID": 820374, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 851523, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 700342, + "title": "Disaster Resilience & Climate Change topic 2: Natural Hazards: Towards risk reduction science and innovation plans at national and European level", + "topic": "DRS-10-2015" +},{ + "projectID": 654387, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 101003289, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 801781, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101029732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 851544, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 798697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 665756, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 693455, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 753755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 730900, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 101033169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899558, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 823839, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 706061, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101016175, + "title": "Repurposing of manufacturing for vital medical supplies and equipment.", + "topic": "SC1-PHE-CORONAVIRUS-2020-2A" +},{ + "projectID": 746138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 847585, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101004205, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 101024341, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 643052, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101023360, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 862829, + "title": "Anti-microbials and animal production", + "topic": "SFS-11-2018-2019" +},{ + "projectID": 821881, + "title": "Scientific instrumentation and technologies enabling space science and exploration", + "topic": "SPACE-20-SCI-2018" +},{ + "projectID": 871658, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 755383, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 636170, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 857560, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 851565, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 721465, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 819740, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 707911, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785800, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 801285, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 885797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 860100, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 820394, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 694407, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 727312, + "title": "A joint plant breeding programme to decrease the EU's and China's dependency on protein imports", + "topic": "SFS-44-2016" +},{ + "projectID": 947659, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 965241, + "title": "Reliable and accessible information on cell and gene-based therapies", + "topic": "SC1-HCO-19-2020" +},{ + "projectID": 687757, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 745426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846170, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862346, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 794447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101036854, + "title": "Demonstration of systemic solutions for the territorial deployment of the circular economy", + "topic": "LC-GD-3-2-2020" +},{ + "projectID": 946150, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 899141, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 885274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 849229, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 694712, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 780215, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 685963, + "title": "Independent access to space", + "topic": "COMPET-02-2015" +},{ + "projectID": 750055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659314, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 822304, + "title": "Past, present and future of differentiation in European governance", + "topic": "GOVERNANCE-02-2018-2019" +},{ + "projectID": 101016834, + "title": "AI for the smart hospital of the future", + "topic": "DT-ICT-12-2020" +},{ + "projectID": 899659, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 776681, + "title": "Large-scale demonstrators on nature-based solutions for hydro-meteorological risk reduction", + "topic": "SC5-08-2017" +},{ + "projectID": 678156, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 871542, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 688860, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 642028, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 820434, + "title": "Building information modelling adapted to efficient renovation (RIA)", + "topic": "LC-EEB-02-2018" +},{ + "projectID": 668039, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 820363, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 101022791, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 886198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 790900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101001451, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 813438, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 665822, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 818179, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 750779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742739, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 892017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 642691, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 681946, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 891710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716140, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 952183, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 727830, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 701512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866004, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 691800, + "title": "Transmission grid and wholesale market", + "topic": "LCE-06-2015" +},{ + "projectID": 851809, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 694955, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101017008, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 821115, + "title": "Towards operational forecasting of earthquakes and early warning capacity for more resilient societies", + "topic": "SC5-17-2018" +},{ + "projectID": 795917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758877, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 771565, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 955974, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 957407, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 871737, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 101018300, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 640378, + "title": "Quantum simulation", + "topic": "FETPROACT-3-2014" +},{ + "projectID": 721675, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 675555, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 843796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851021, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 714837, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 853064, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101025295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758604, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 815002, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 963599, + "title": "Next-generation batteries for stationary energy storage", + "topic": "LC-BAT-8-2020" +},{ + "projectID": 814401, + "title": "Risk Governance of nanotechnology (RIA)", + "topic": "NMBP-13-2018" +},{ + "projectID": 754364, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 816336, + "title": "Preparatory Actions for new FET Flagships", + "topic": "FETFLAG-01-2018" +},{ + "projectID": 722479, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101036756, + "title": "Innovative, systemic zero-pollution solutions to protect health, environment and natural resources from persistent and mobile chemicals", + "topic": "LC-GD-8-1-2020" +},{ + "projectID": 662147, + "title": "Supporting the implementation of the first-of-the-kind geological repositories", + "topic": "NFRP-06-2014" +},{ + "projectID": 948243, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 792073, + "title": "Near-to-market solutions for the use of solar heat in industrial processes", + "topic": "LCE-12-2017" +},{ + "projectID": 641999, + "title": "Secondary raw materials inventory", + "topic": "WASTE-4c-2014" +},{ + "projectID": 952792, + "title": "Experimental pilot line for devices based on graphene, related 2d materials and heterostructures", + "topic": "SGA-FET-GRAPHENE-2-2019" +},{ + "projectID": 814966, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 957213, + "title": "Coordinate and support the large scale research initiative on Future Battery Technologies", + "topic": "LC-BAT-15-2020" +},{ + "projectID": 101001182, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 875557, + "title": "Strongly improved, highly performant and safe all solid state batteries for electric vehicles (RIA)", + "topic": "LC-BAT-1-2019" +},{ + "projectID": 732968, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 646397, + "title": "Open access pilot lines for cost-effective nanocomposites", + "topic": "NMP-01-2014" +},{ + "projectID": 860108, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 746992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688282, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 769350, + "title": "Reducing aviation noise", + "topic": "MG-1-2-2017" +},{ + "projectID": 814530, + "title": "Risk Governance of nanotechnology (RIA)", + "topic": "NMBP-13-2018" +},{ + "projectID": 956059, + "title": "Integrated design concepts for energy-efficient ICT in buildings", + "topic": "LC-SC3-B4E-5-2020" +},{ + "projectID": 760601, + "title": "Pilot Lines for Manufacturing of Nanotextured surfaces with mechanically enhanced properties", + "topic": "PILOTS-03-2017" +},{ + "projectID": 814426, + "title": "Nanoinformatics: from materials models to predictive toxicology and ecotoxicology (RIA)", + "topic": "NMBP-14-2018" +},{ + "projectID": 691797, + "title": "Large scale energy storage", + "topic": "LCE-09-2015" +},{ + "projectID": 834966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863179, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 720907, + "title": "Innovative and sustainable materials solutions for the substitution of critical raw materials in the electric power system", + "topic": "NMBP-03-2016" +},{ + "projectID": 813036, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 850937, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 101015442, + "title": "Noise and Vibration (WA5)", + "topic": "S2R-OC-CCA-01-2020" +},{ + "projectID": 881603, + "title": "Graphene FET Flagship core project", + "topic": "SGA-FET-GRAPHENE-2019" +},{ + "projectID": 677020, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 760840, + "title": "Framework and strategies for nanomaterial characterisation, classification, grouping and read-across for risk analysis", + "topic": "NMBP-28-2017" +},{ + "projectID": 814464, + "title": "Materials for future highly performant electrified vehicle batteries (RIA)", + "topic": "LC-NMBP-30-2018" +},{ + "projectID": 722149, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 949301, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 641004, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 101036910, + "title": "European Research Infrastructures capacities and services to address European Green Deal challenges", + "topic": "LC-GD-9-1-2020" +},{ + "projectID": 956544, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 828818, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 668786, + "title": "Health promotion and disease prevention: improved inter-sector co-operation for environment and health based interventions", + "topic": "PHC-04-2015" +},{ + "projectID": 843988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 952982, + "title": "Next generation of thin-film photovoltaic technologies", + "topic": "LC-SC3-RES-9-2020" +},{ + "projectID": 681312, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 820951, + "title": "Advanced Integrated Testing Methods development", + "topic": "JTI-CS2-2017-CfP07-AIR-02-56" +},{ + "projectID": 847593, + "title": "European Joint Research Programme in the management and disposal of radioactive waste", + "topic": "NFRP-2018-6" +},{ + "projectID": 654190, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 785219, + "title": "Graphene FET Flagship core project", + "topic": "SGA-FET-GRAPHENE-2017" +},{ + "projectID": 872494, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 688225, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 814794, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 734187, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 696656, + "title": "FETFLAGSHIP", + "topic": "FETFLAGSHIP" +},{ + "projectID": 760928, + "title": "Development of a reliable methodology for better risk management of engineered biomaterials in Advanced Therapy Medicinal Products and/or Medical Devices", + "topic": "NMBP-12-2017" +},{ + "projectID": 875548, + "title": "Research and innovation for advanced Li-ion cells (generation 3b)", + "topic": "LC-BAT-5-2019" +},{ + "projectID": 642642, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 958457, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 664786, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 825647, + "title": "STARTS – The Arts stimulating innovation", + "topic": "ICT-32-2018" +},{ + "projectID": 776517, + "title": "Raw materials policy support actions", + "topic": "SC5-15-2016-2017" +},{ + "projectID": 893568, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 761104, + "title": "Regulatory Science Framework for assessment of risk benefit ratio of Nanomedicines and Biomaterials", + "topic": "NMBP-14-2017" +},{ + "projectID": 952924, + "title": "Safe by design, from science to regulation: multi-component nanomaterials (RIA)", + "topic": "NMBP-16-2020" +},{ + "projectID": 701647, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 686163, + "title": "Manufacturing and control of nanoporous materials", + "topic": "NMP-03-2015" +},{ + "projectID": 686239, + "title": "Next generation tools for risk governance of nanomaterials", + "topic": "NMP-30-2015" +},{ + "projectID": 848551, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 964388, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 653373, + "title": "Next generation of competitive Li-ion batteries to meet customer expectations", + "topic": "GV-1-2014" +},{ + "projectID": 646002, + "title": "Assessment of environmental fate of nanomaterials", + "topic": "NMP-28-2014" +},{ + "projectID": 730829, + "title": "Noise reduction methodologies", + "topic": "S2R-OC-CCA-03-2015" +},{ + "projectID": 754660, + "title": "Testing matrix optimization by interaction between numerical modelling and innovative non-contact measurement technology", + "topic": "JTI-CS2-2016-CFP04-AIR-02-32" +},{ + "projectID": 767187, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 652816, + "title": "Future natural gas powertrains and components for cars and vans", + "topic": "GV-3-2014" +},{ + "projectID": 840222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 761000, + "title": "Paper-based electronics", + "topic": "PILOTS-05-2017" +},{ + "projectID": 766975, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 797229, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657141, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 733952, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 749323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803441, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101020824, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 845265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694481, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101003125, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 686330, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101034245, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 682472, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 741413, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 654003, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 677278, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 852621, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 701550, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 795450, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034407, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101002868, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 894064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840638, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759289, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 792030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657304, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865225, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 771492, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 640176, + "title": "New ideas for Earth-relevant space applications", + "topic": "EO-1-2014" +},{ + "projectID": 838739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 668991, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 653950, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 744242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 649087, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647008, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701815, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101032479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 824043, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 742206, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 641918, + "title": "Biodiversity and ecosystem services: drivers of change and causalities", + "topic": "SC5-06-2014" +},{ + "projectID": 747877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 851181, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 752094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898575, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647204, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701753, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 864045, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101002359, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 646827, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 700196, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 653223, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639003, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 742798, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 743080, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 694578, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 845115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101008099, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 952433, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 824603, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 688363, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 857381, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101003805, + "title": "A common European framework to harmonise procedures for plastics pollution monitoring and assessments", + "topic": "CE-SC5-29-2020" +},{ + "projectID": 646221, + "title": "Joint EU & MS activity on the next phase of research in support of regulation 'NANOREG II'", + "topic": "NMP-26-2014" +},{ + "projectID": 952404, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 730329, + "title": "European data hub of the GEOSS information system", + "topic": "SC5-20-2016" +},{ + "projectID": 685817, + "title": "Increasing the capacity to perform nano-safety assessment", + "topic": "NMP-29-2015" +},{ + "projectID": 689289, + "title": "Improving the air quality and reducing the carbon footprint of European cities", + "topic": "SC5-04-2015" +},{ + "projectID": 860665, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 862296, + "title": "Safe by design, from science to regulation: metrics and main sectors (RIA)", + "topic": "NMBP-15-2019" +},{ + "projectID": 101037648, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 670462, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101008004, + "title": "Pilot for a new model of Integrating Activities", + "topic": "INFRAIA-03-2020" +},{ + "projectID": 824077, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 101004362, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 766347, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 871083, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 824131, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 871108, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 731036, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 101003890, + "title": "Forest Fires risk reduction: towards an integrated fire management approach in the E.U.", + "topic": "LC-CLA-15-2020" +},{ + "projectID": 101001601, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 773400, + "title": "Innovative sustainable solutions for improving the safety and dietary properties of seafood", + "topic": "BG-08-2017" +},{ + "projectID": 800506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 638822, + "title": "Climate Change relevant space-based Data reprocessing and calibration", + "topic": "EO-2-2014" +},{ + "projectID": 676555, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 642153, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 871121, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 870465, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 818395, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 869304, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 636329, + "title": "Safer and more efficient waterborne operations through new technologies and smarter traffic management", + "topic": "MG-4.2-2014" +},{ + "projectID": 774586, + "title": "Blue green innovation for clean coasts and seas", + "topic": "BG-07-2017" +},{ + "projectID": 821418, + "title": "Emissions prediction for very large bypass ratio turbofans", + "topic": "JTI-CS2-2017-CfP07-ENG-03-20" +},{ + "projectID": 101034126, + "title": "Advanced pilots towards the European supercomputers", + "topic": "EuroHPC-2020-01-a" +},{ + "projectID": 823712, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 715546, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 675451, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 946002, + "title": "Advanced Experimental Platform Towards Exascale", + "topic": "EuroHPC-06-2019" +},{ + "projectID": 956702, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 823691, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 825619, + "title": "Artificial Intelligence", + "topic": "ICT-26-2018-2020" +},{ + "projectID": 700381, + "title": "Forensics topic 1: Tools and infrastructure for the extraction, fusion, exchange and analysis of big data including cyber-offenses generated data for forensic investigation", + "topic": "FCT-01-2015" +},{ + "projectID": 676629, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 952179, + "title": "AI for Health Imaging", + "topic": "DT-TDS-05-2020" +},{ + "projectID": 807083, + "title": "Airframes", + "topic": "CS2-GAM-2018-AIR" +},{ + "projectID": 825355, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 893378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 644182, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 724173, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101016478, + "title": "International Cooperation on HPC", + "topic": "FETHPC-04-2020" +},{ + "projectID": 951786, + "title": "Centres of Excellence in exascale computing", + "topic": "INFRAEDI-05-2020" +},{ + "projectID": 951773, + "title": "Centres of Excellence in exascale computing", + "topic": "INFRAEDI-05-2020" +},{ + "projectID": 747048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 951911, + "title": "Towards a vibrant European network of AI excellence centres", + "topic": "ICT-48-2020" +},{ + "projectID": 101036480, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 793699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 691184, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 800154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722518, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 869367, + "title": "Negative emissions and land-use based mitigation assessment", + "topic": "LC-CLA-02-2019" +},{ + "projectID": 689772, + "title": "High Performance Computing (HPC)", + "topic": "EUB-2-2015" +},{ + "projectID": 956104, + "title": "Industrial software codes for extreme scale computing environments and applications", + "topic": "EuroHPC-03-2019" +},{ + "projectID": 825070, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 654065, + "title": "Managing, preserving and computing with big research data", + "topic": "EINFRA-1-2014" +},{ + "projectID": 101000607, + "title": "Enzymes for more environment-friendly consumer products", + "topic": "FNR-16-2020" +},{ + "projectID": 956831, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 800962, + "title": "Exascale HPC ecosystem development", + "topic": "FETHPC-03-2017" +},{ + "projectID": 754271, + "title": "Platform-driven e-infrastructure innovation", + "topic": "EINFRA-21-2017" +},{ + "projectID": 779656, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 779877, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 965193, + "title": "Digital diagnostics – developing tools for supporting clinical decisions by integrating various diagnostic data", + "topic": "SC1-BHC-06-2020" +},{ + "projectID": 801137, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 951733, + "title": "Centres of Excellence in exascale computing", + "topic": "INFRAEDI-05-2020" +},{ + "projectID": 814837, + "title": "Multidisciplinary and collaborative aircraft design tools and processes", + "topic": "MG-3-1-2018" +},{ + "projectID": 101004870, + "title": "Pilot on using the European cloud infrastructure for public administrations", + "topic": "DT-GOVERNANCE-12-2019-2020" +},{ + "projectID": 644080, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 655339, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 687584, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 965345, + "title": "Towards a Health research and innovation Cloud: Capitalising on data sharing initiatives in health research", + "topic": "SC1-HCC-10-2020" +},{ + "projectID": 642963, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 826647, + "title": "Specific Grant Agreement European Low-Power Microprocessor Technologies 2018", + "topic": "SGA-LPMT-01-2018" +},{ + "projectID": 824151, + "title": "Support to the governance of High Performance Computing Infrastructures", + "topic": "INFRAEDI-03-2018" +},{ + "projectID": 101016577, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 754433, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 773051, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 768626, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 644202, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 777204, + "title": "In-silico trials for developing and assessing biomedical products", + "topic": "SC1-PM-16-2017" +},{ + "projectID": 645496, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 821003, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 740073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 687632, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 730954, + "title": "Support to policies and international cooperation for e-infrastructures", + "topic": "INFRASUPP-03-2016" +},{ + "projectID": 825903, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 658853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 671558, + "title": "HPC Ecosystem Development", + "topic": "FETHPC-2-2014" +},{ + "projectID": 708566, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 642294, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 653838, + "title": "Pan-European High Performance Computing infrastructure and services", + "topic": "EINFRA-4-2014" +},{ + "projectID": 101018180, + "title": "Pilot on quantum simulator", + "topic": "EuroHPC-2020-01-b" +},{ + "projectID": 824080, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 956748, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 871465, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 952026, + "title": "Towards a vibrant European network of AI excellence centres", + "topic": "ICT-48-2020" +},{ + "projectID": 747607, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 667191, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 777365, + "title": "NEXT GENERATION OF ELECTRONIC TRANSLATIONAL SAFETY – NEXGETS", + "topic": "IMI2-2016-09-04" +},{ + "projectID": 869565, + "title": "Development of commercial activities and services through the use of GEOSS and Copernicus data", + "topic": "SC5-16-2019" +},{ + "projectID": 708063, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 749516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 654021, + "title": "Managing, preserving and computing with big research data", + "topic": "EINFRA-1-2014" +},{ + "projectID": 101021668, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 871174, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 730897, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 860895, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 730253, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 671610, + "title": "HPC Ecosystem Development", + "topic": "FETHPC-2-2014" +},{ + "projectID": 633053, + "title": "EURATOM", + "topic": "EURATOM" +},{ + "projectID": 801331, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 730929, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 823964, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 676556, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 957331, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 951732, + "title": "HPC Competence Centres", + "topic": "EuroHPC-04-2019" +},{ + "projectID": 955735, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 878752, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 780622, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 847989, + "title": "Towards risk-based screening strategies for non-communicable diseases", + "topic": "SC1-BHC-30-2019" +},{ + "projectID": 956874, + "title": "HPC and data centric environments and application platforms", + "topic": "EuroHPC-02-2019" +},{ + "projectID": 846139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 770827, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 774234, + "title": "Towards 2030 - policies and decision support tools for an integrated approach to the management of land as a resource", + "topic": "RUR-03-2017" +},{ + "projectID": 828947, + "title": "International Cooperation on HPC", + "topic": "FETHPC-01-2018" +},{ + "projectID": 823844, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 765604, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 946009, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 869945, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101000327, + "title": "Enzymes for more environment-friendly consumer products", + "topic": "FNR-16-2020" +},{ + "projectID": 870301, + "title": "International Cooperation Copernicus – Designing EO downstream applications with international partners", + "topic": "DT-SPACE-06-EO-2019" +},{ + "projectID": 957488, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 871669, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 639595, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 824158, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 748750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101003551, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 101017207, + "title": "Increasing the service offer of the EOSC Portal", + "topic": "INFRAEOSC-07-2020" +},{ + "projectID": 871467, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 873120, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 730913, + "title": "Support to the next implementation phase of Pan-European High Performance Computing infrastructure and services (PRACE)", + "topic": "EINFRA-11-2016" +},{ + "projectID": 101004152, + "title": "Big data technologies and Artificial Intelligence for Copernicus", + "topic": "DT-SPACE-25-EO-2020" +},{ + "projectID": 951740, + "title": "HPC Competence Centres", + "topic": "EuroHPC-04-2019" +},{ + "projectID": 676553, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 825111, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 646456, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2014" +},{ + "projectID": 754304, + "title": "Co-design of HPC systems and applications", + "topic": "FETHPC-01-2016" +},{ + "projectID": 653194, + "title": "Towards global data e-infrastructures – Research Data Alliance", + "topic": "EINFRA-3-2014" +},{ + "projectID": 785549, + "title": "Multi-Physics methodology for phase change due to rapidly depressurised two-phase flows", + "topic": "JTI-CS2-2017-CFP06-LPA-02-18" +},{ + "projectID": 101033654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 871075, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 675728, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 721865, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 945521, + "title": "Airframe ITD GAM 2020", + "topic": "CS2-GAM-2020-AIR" +},{ + "projectID": 871042, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 952181, + "title": "Centres of Excellence in exascale computing", + "topic": "INFRAEDI-05-2020" +},{ + "projectID": 800898, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 871115, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 772773, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 792103, + "title": "Near-to-market solutions for reducing the water consumption of CSP Plants", + "topic": "LCE-11-2017" +},{ + "projectID": 825835, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 101017536, + "title": "Integration and consolidation of the existing pan-European access mechanism to public research infrastructures and commercial services through the EOSC Portal", + "topic": "INFRAEOSC-03-2020" +},{ + "projectID": 826121, + "title": "Exploiting the full potential of in-silico medicine research for personalised diagnostics and therapies in cloud-based environments", + "topic": "SC1-DTH-07-2018" +},{ + "projectID": 641302, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 857647, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 780681, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 739530, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 823830, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 687698, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 671602, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 824143, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 956416, + "title": "Industrial software codes for extreme scale computing environments and applications", + "topic": "EuroHPC-03-2019" +},{ + "projectID": 823767, + "title": "Pan-European High Performance Computing infrastructure and services (PRACE)", + "topic": "INFRAEDI-01-2018" +},{ + "projectID": 857191, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 877056, + "title": "EDGE COMPUTING", + "topic": "ECSEL-RIA-2019-2-Special-Topic-2" +},{ + "projectID": 777778, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 780787, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 825473, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 676580, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 101051997, + "title": "Training and Education on High Performance Computing", + "topic": "EuroHPC-2020-03" +},{ + "projectID": 801051, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 671578, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 671697, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 789630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 956560, + "title": "HPC and data centric environments and application platforms", + "topic": "EuroHPC-02-2019" +},{ + "projectID": 676598, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 756194, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 800957, + "title": "Exascale HPC ecosystem development", + "topic": "FETHPC-03-2017" +},{ + "projectID": 101022622, + "title": "European Energy and Climate Modelling Forum (2020-2024)", + "topic": "LC-SC3-CC-7-2020" +},{ + "projectID": 727987, + "title": "Spotlight on critical outbreak of pests: the case of Xylella fastidiosa", + "topic": "SFS-09-2016" +},{ + "projectID": 101028505, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870072, + "title": "New developments in plus energy houses (IA)", + "topic": "LC-EEB-03-2019" +},{ + "projectID": 707683, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 821124, + "title": "Supporting the development of climate policies to deliver on the Paris Agreement, through Integrated Assessment Models (IAMs)", + "topic": "LC-CLA-01-2018" +},{ + "projectID": 820712, + "title": "Climate change impacts in Europe", + "topic": "LC-CLA-03-2018" +},{ + "projectID": 730403, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 869710, + "title": "Inter-relations between climate change, biodiversity and ecosystem services", + "topic": "LC-CLA-06-2019" +},{ + "projectID": 821010, + "title": "Climate change impacts in Europe", + "topic": "LC-CLA-03-2018" +},{ + "projectID": 653549, + "title": "Managing, preserving and computing with big research data", + "topic": "EINFRA-1-2014" +},{ + "projectID": 730995, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2016" +},{ + "projectID": 101003722, + "title": "Understanding climate-water-energy-food nexus and streamlining water-related policies", + "topic": "LC-CLA-14-2020" +},{ + "projectID": 101036534, + "title": "Preventing and fighting extreme wildfires with the integration and demonstration of innovative means", + "topic": "LC-GD-1-1-2020" +},{ + "projectID": 101037097, + "title": "Restoring biodiversity and ecosystem services", + "topic": "LC-GD-7-1-2020" +},{ + "projectID": 666773, + "title": "Health promotion and disease prevention: improved inter-sector co-operation for environment and health based interventions", + "topic": "PHC-04-2015" +},{ + "projectID": 101036599, + "title": "Developing end-user products and services for all stakeholders and citizens supporting climate adaptation and mitigation", + "topic": "LC-GD-9-2-2020" +},{ + "projectID": 833881, + "title": "Demonstration of applied solutions to enhance border and external security", + "topic": "SU-BES03-2018-2019-2020" +},{ + "projectID": 821471, + "title": "Supporting the development of climate policies to deliver on the Paris Agreement, through Integrated Assessment Models (IAMs)", + "topic": "LC-CLA-01-2018" +},{ + "projectID": 101003826, + "title": "Polar climate: understanding the polar processes in a global context in the Arctic and Antarctic Regions", + "topic": "LC-CLA-17-2020" +},{ + "projectID": 777536, + "title": "Data and Distributed Computing e-infrastructures for Open Science", + "topic": "EINFRA-12-2017" +},{ + "projectID": 101036086, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 869300, + "title": "Inter-relations between climate change, biodiversity and ecosystem services", + "topic": "LC-CLA-06-2019" +},{ + "projectID": 862409, + "title": "The Future of Seas and Oceans Flagship Initiative", + "topic": "BG-07-2019-2020" +},{ + "projectID": 101003881, + "title": "Understanding climate-water-energy-food nexus and streamlining water-related policies", + "topic": "LC-CLA-14-2020" +},{ + "projectID": 101017567, + "title": "Increasing the service offer of the EOSC Portal", + "topic": "INFRAEOSC-07-2020" +},{ + "projectID": 101003276, + "title": "Multi-hazard risk management for risk-informed decision-making in the E.U.", + "topic": "LC-CLA-16-2020" +},{ + "projectID": 776661, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 730427, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 776609, + "title": "Widening international cooperation activities on climate adaptation and mitigation", + "topic": "SC5-31-2017" +},{ + "projectID": 642147, + "title": "Linkages between climate change actions and sustainable development", + "topic": "SC5-03b-2014" +},{ + "projectID": 776479, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 955297, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 853050, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 727852, + "title": "Impact of Arctic changes on the weather and climate of the Northern Hemisphere", + "topic": "BG-10-2016" +},{ + "projectID": 690116, + "title": "Cloud Computing, including security aspects", + "topic": "EUB-1-2015" +},{ + "projectID": 821922, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 820846, + "title": "Supporting the development of climate policies to deliver on the Paris Agreement, through Integrated Assessment Models (IAMs)", + "topic": "LC-CLA-01-2018" +},{ + "projectID": 862923, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 870245, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 857650, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 101036458, + "title": "Developing end-user products and services for all stakeholders and citizens supporting climate adaptation and mitigation", + "topic": "LC-GD-9-2-2020" +},{ + "projectID": 641538, + "title": "Coordinating European Observation Networks to reinforce the knowledge base for climate, natural resources and raw materials", + "topic": "SC5-18a-2014" +},{ + "projectID": 101036683, + "title": "Climate-resilient Innovation Packages for EU regions", + "topic": "LC-GD-1-3-2020" +},{ + "projectID": 730500, + "title": "Climate services market research", + "topic": "SC5-03-2016" +},{ + "projectID": 846706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101037247, + "title": "Preventing and fighting extreme wildfires with the integration and demonstration of innovative means", + "topic": "LC-GD-1-1-2020" +},{ + "projectID": 690105, + "title": "Improving the air quality and reducing the carbon footprint of European cities", + "topic": "SC5-04-2015" +},{ + "projectID": 955558, + "title": "HPC and data centric environments and application platforms", + "topic": "EuroHPC-02-2019" +},{ + "projectID": 776848, + "title": "Large-scale demonstrators on nature-based solutions for hydro-meteorological risk reduction", + "topic": "SC5-08-2017" +},{ + "projectID": 842151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 734143, + "title": "Separation Management En-Route and TMA", + "topic": "SESAR.IR-VLD.Wave1-14-2015" +},{ + "projectID": 653255, + "title": "Disaster Resilience & Climate Change topic 1: Science and innovation for adaptation to climate change: from assessing costs, risks and opportunities to demonstration of options and practices", + "topic": "DRS-09-2014" +},{ + "projectID": 101037104, + "title": "Developing end-user products and services for all stakeholders and citizens supporting climate adaptation and mitigation", + "topic": "LC-GD-9-2-2020" +},{ + "projectID": 853487, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 730944, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 821868, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 891965, + "title": "Innovation in Network Management", + "topic": "SESAR-ER4-16-2019" +},{ + "projectID": 730203, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 769032, + "title": "Competitiveness in Earth observation mission technologies", + "topic": "COMPET-2-2017" +},{ + "projectID": 731730, + "title": "Advanced DCB", + "topic": "SESAR.IR-VLD.Wave1-11-2015" +},{ + "projectID": 101004318, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 694768, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 733021, + "title": "Network Collaborative Management", + "topic": "SESAR.IR-VLD.Wave1-23-2015" +},{ + "projectID": 733020, + "title": "Optimised Airspace Users Operations", + "topic": "SESAR.IR-VLD.Wave1-09-2015" +},{ + "projectID": 734129, + "title": "Trajectory Based Free Routing", + "topic": "SESAR.IR-VLD.Wave1-13-2015" +},{ + "projectID": 824310, + "title": "Innovative technologies for improving aviation safety and certification in icing conditions (InCo flagship)", + "topic": "MG-2-5-2018" +},{ + "projectID": 731796, + "title": "Advanced Airspace Management", + "topic": "SESAR.IR-VLD.Wave1-10-2015" +},{ + "projectID": 689443, + "title": "Strengthening the European Research Area in the domain of Earth Observation", + "topic": "SC5-15-2015" +},{ + "projectID": 864337, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 824253, + "title": "Innovative technologies for improving aviation safety and certification in icing conditions (InCo flagship)", + "topic": "MG-2-5-2018" +},{ + "projectID": 733121, + "title": "Total Airport Management", + "topic": "SESAR.IR-VLD.Wave1-07-2015" +},{ + "projectID": 949516, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 820852, + "title": "Strengthening the benefits for Europe of the Global Earth Observation System of Systems (GEOSS) - establishing 'EuroGEOSS'", + "topic": "SC5-15-2018" +},{ + "projectID": 730005, + "title": "Downstream applications", + "topic": "EO-1-2016" +},{ + "projectID": 727890, + "title": "An integrated Arctic observation system", + "topic": "BG-09-2016" +},{ + "projectID": 951799, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 739563, + "title": "European Open Science Cloud for Research", + "topic": "INFRADEV-04-2016" +},{ + "projectID": 730960, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 774652, + "title": "Earth observation services for the monitoring of agricultural production in Africa", + "topic": "SFS-43-2017" +},{ + "projectID": 730482, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 730355, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 871153, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 776787, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 834493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 654410, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 870497, + "title": "International Cooperation Copernicus – Designing EO downstream applications with international partners", + "topic": "DT-SPACE-06-EO-2019" +},{ + "projectID": 678193, + "title": "Forecasting and anticipating effects of climate change on fisheries and aquaculture", + "topic": "BG-02-2015" +},{ + "projectID": 654182, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 820989, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 870504, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 780118, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 825258, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 786571, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 653824, + "title": "Disaster Resilience & Climate Change topic 1: Science and innovation for adaptation to climate change: from assessing costs, risks and opportunities to demonstration of options and practices", + "topic": "DRS-09-2014" +},{ + "projectID": 730938, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 101036245, + "title": "European Research Infrastructures capacities and services to address European Green Deal challenges", + "topic": "LC-GD-9-1-2020" +},{ + "projectID": 874990, + "title": "Ship emission control scenarios, marine environmental impact and mitigation", + "topic": "MG-BG-02-2019" +},{ + "projectID": 777544, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 824068, + "title": "Connecting ESFRI infrastructures through Cluster projects", + "topic": "INFRAEOSC-04-2018" +},{ + "projectID": 856599, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 817617, + "title": "Stepping up integrated pest management", + "topic": "SFS-06-2018-2020" +},{ + "projectID": 821205, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 101003472, + "title": "Supporting the implementation of GEOSS in the Arctic in collaboration with Copernicus", + "topic": "LC-CLA-20-2020" +},{ + "projectID": 101003590, + "title": "Polar climate: understanding the polar processes in a global context in the Arctic and Antarctic Regions", + "topic": "LC-CLA-17-2020" +},{ + "projectID": 101003876, + "title": "Advancing climate services", + "topic": "LC-CLA-12-2020" +},{ + "projectID": 958927, + "title": "Copernicus evolution – Research activities in support of a European operational monitoring support capacity for fossil CO2 emissions", + "topic": "IBA-SPACE-CHE2-2019" +},{ + "projectID": 687428, + "title": "Stimulating wider research use of Copernicus Sentinel Data", + "topic": "EO-2-2015" +},{ + "projectID": 776810, + "title": "Towards a robust and comprehensive greenhouse gas verification system", + "topic": "SC5-04-2017" +},{ + "projectID": 955811, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 101003518, + "title": "Integrated GEOSS climate applications to support adaptation and mitigation measures of the Paris Agreement", + "topic": "LC-CLA-19-2020" +},{ + "projectID": 723986, + "title": "Addressing aviation safety challenges", + "topic": "MG-3.1-2016" +},{ + "projectID": 101037193, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 633080, + "title": "SPACE", + "topic": "SPACE" +},{ + "projectID": 654109, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 671591, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 824115, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 955606, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 813844, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 800897, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 101037319, + "title": "European Research Infrastructures capacities and services to address European Green Deal challenges", + "topic": "LC-GD-9-1-2020" +},{ + "projectID": 640161, + "title": "New ideas for Earth-relevant space applications", + "topic": "EO-1-2014" +},{ + "projectID": 955513, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 955648, + "title": "HPC and data centric environments and application platforms", + "topic": "EuroHPC-02-2019" +},{ + "projectID": 654367, + "title": "Managing, preserving and computing with big research data", + "topic": "EINFRA-1-2014" +},{ + "projectID": 754337, + "title": "Co-design of HPC systems and applications", + "topic": "FETHPC-01-2016" +},{ + "projectID": 700099, + "title": "Crisis management topic 1: potential of current and new measures and technologies to respond to extreme weather and climate events", + "topic": "DRS-01-2015" +},{ + "projectID": 821984, + "title": "Copernicus evolution – Mission exploitation concepts", + "topic": "LC-SPACE-02-EO-2018" +},{ + "projectID": 101033975, + "title": "Advanced pilots towards the European supercomputers", + "topic": "EuroHPC-2020-01-a" +},{ + "projectID": 801101, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 776186, + "title": "Preparation for a European capacity to monitor CO2 anthropogenic emissions", + "topic": "EO-3-2017" +},{ + "projectID": 101003470, + "title": "Developing the next generation of Earth System Models", + "topic": "LC-CLA-18-2020" +},{ + "projectID": 671627, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 101037293, + "title": "Developing end-user products and services for all stakeholders and citizens supporting climate adaptation and mitigation", + "topic": "LC-GD-9-2-2020" +},{ + "projectID": 825532, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 801039, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 101004156, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 871120, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 101016798, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 776613, + "title": "Integrated European regional modelling and climate prediction system", + "topic": "SC5-02-2017" +},{ + "projectID": 730030, + "title": "Evolution of Copernicus services", + "topic": "EO-3-2016" +},{ + "projectID": 820829, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 101003469, + "title": "Advancing climate services", + "topic": "LC-CLA-12-2020" +},{ + "projectID": 824084, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 641816, + "title": "Advanced Earth-system models", + "topic": "SC5-01-2014" +},{ + "projectID": 820970, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 689029, + "title": "Earth-system modelling and climate services", + "topic": "SC5-05b-2015" +},{ + "projectID": 869730, + "title": "Human dynamics of climate change", + "topic": "LC-CLA-05-2019" +},{ + "projectID": 731070, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 776287, + "title": "Space Weather", + "topic": "COMPET-5-2017" +},{ + "projectID": 101003536, + "title": "Developing the next generation of Earth System Models", + "topic": "LC-CLA-18-2020" +},{ + "projectID": 776467, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 675191, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 723526, + "title": "Safer waterborne transport and maritime operations", + "topic": "MG-3.3-2016" +},{ + "projectID": 690462, + "title": "ERA for Climate Services", + "topic": "SC5-02-2015" +},{ + "projectID": 662287, + "title": "Integrating radiation research in the European Union", + "topic": "NFRP-07-2015" +},{ + "projectID": 640216, + "title": "Space Weather", + "topic": "PROTEC-1-2014" +},{ + "projectID": 633211, + "title": "Developing in-situ Atlantic Ocean Observations for a better management and sustainable exploitation of the maritime resources", + "topic": "BG-08-2014" +},{ + "projectID": 823988, + "title": "HPC PPP - Centres of Excellence on HPC", + "topic": "INFRAEDI-02-2018" +},{ + "projectID": 727862, + "title": "Impact of Arctic changes on the weather and climate of the Northern Hemisphere", + "topic": "BG-10-2016" +},{ + "projectID": 640276, + "title": "Observation capacity mapping in the context of Atmospheric and Climate change monitoring", + "topic": "EO-3-2014" +},{ + "projectID": 640171, + "title": "New ideas for Earth-relevant space applications", + "topic": "EO-1-2014" +},{ + "projectID": 690199, + "title": "Demonstrating the concept of 'Citizen Observatories'", + "topic": "SC5-17-2015" +},{ + "projectID": 633085, + "title": "SPACE", + "topic": "SPACE" +},{ + "projectID": 641811, + "title": "Water cycle under future climate", + "topic": "WATER-2a-2014" +},{ + "projectID": 821926, + "title": "Copernicus evolution - Preparing for the next generation of Copernicus Marine Service ocean models", + "topic": "LC-SPACE-03-EO-2018" +},{ + "projectID": 641727, + "title": "Advanced Earth-system models", + "topic": "SC5-01-2014" +},{ + "projectID": 776868, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 869575, + "title": "Human dynamics of climate change", + "topic": "LC-CLA-05-2019" +},{ + "projectID": 862626, + "title": "The Future of Seas and Oceans Flagship Initiative", + "topic": "BG-07-2019-2020" +},{ + "projectID": 692194, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 643073, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 691681, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 757609, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 871803, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 741409, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 680912, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 714693, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 732942, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 101022339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 648276, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 739754, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 863876, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 746979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701464, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 725627, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 709188, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679651, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 866132, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101032464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 675997, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 725594, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 692995, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 864075, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 640772, + "title": "Global Systems Science (GSS)", + "topic": "FETPROACT-1-2014" +},{ + "projectID": 734545, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 705194, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801635, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 863818, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101021480, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 841443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787932, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 691672, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 748066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669217, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 802348, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 707688, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659316, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706620, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 771687, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 740435, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 654861, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759424, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 708935, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655235, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 670077, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 681228, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 636412, + "title": "Tackling urban road congestion", + "topic": "MG-5.3-2014" +},{ + "projectID": 643999, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 696295, + "title": "Biomarkers for nutrition and health", + "topic": "ISIB-12f-2015" +},{ + "projectID": 721402, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 672281, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 690452, + "title": "Eco-innovative strategies", + "topic": "WASTE-6b-2015" +},{ + "projectID": 655092, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 674067, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 723977, + "title": "ERA-NET Co-fund on electromobility", + "topic": "GV-12-2016" +},{ + "projectID": 679371, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 815378, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 682877, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 698568, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 957020, + "title": "Big data for buildings", + "topic": "LC-SC3-B4E-6-2020" +},{ + "projectID": 635761, + "title": "Consolidating the economic sustainability and competitiveness of European fisheries and aquaculture sectors to reap the potential of seafood markets", + "topic": "BG-10-2014" +},{ + "projectID": 101003656, + "title": "Scientific support to designing mitigation pathways and policies", + "topic": "LC-CLA-10-2020" +},{ + "projectID": 957837, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 662634, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 862555, + "title": "ERANETs in agri-food", + "topic": "SFS-31-2019" +},{ + "projectID": 725081, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 723741, + "title": "Socio-economic research on consumer's behaviour related to energy efficiency", + "topic": "EE-08-2016" +},{ + "projectID": 727243, + "title": "Understanding food value chain and network dynamics", + "topic": "SFS-33-2016" +},{ + "projectID": 101028470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703115, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635727, + "title": "Proteins of the future", + "topic": "SFS-15-2014" +},{ + "projectID": 723791, + "title": "Socio-economic research on consumer's behaviour related to energy efficiency", + "topic": "EE-08-2016" +},{ + "projectID": 866861, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876581, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666794, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 101025481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657637, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 649619, + "title": "Socioeconomic research on energy efficiency", + "topic": "EE-12-2014" +},{ + "projectID": 778533, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 765515, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 883614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 696305, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 649690, + "title": "Socioeconomic research on energy efficiency", + "topic": "EE-12-2014" +},{ + "projectID": 657672, + "title": "The human factor in the energy system", + "topic": "LCE-20-2014" +},{ + "projectID": 747466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727580, + "title": "The impact of consumer practices in food safety: risks and mitigation strategies", + "topic": "SFS-37-2016" +},{ + "projectID": 741181, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 695945, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2015" +},{ + "projectID": 749514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 646917, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 866376, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 677057, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 784960, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 813234, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101001732, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 790658, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 641459, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 696300, + "title": "Coordination action in support of the implementation by participating States of a Joint Programming Initiative on ‘A Healthy Diet for a Healthy Life’", + "topic": "ISIB-13-2015" +},{ + "projectID": 877939, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 846270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 852526, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 761934, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 808943, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 642384, + "title": "Moving towards a circular economy through industrial symbiosis", + "topic": "WASTE-1-2014" +},{ + "projectID": 782509, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 678799, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 735933, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 640401, + "title": "User behaviour and mobility patterns in the context of major societal trends", + "topic": "MG-9.2-2014" +},{ + "projectID": 847049, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 744418, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 957012, + "title": "Socio-economic research: non-energy impacts and behavioural insights on energy efficiency interventions", + "topic": "LC-SC3-EC-4-2020" +},{ + "projectID": 793823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 708249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 638768, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 725402, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 843442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708974, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 795271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823815, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101025131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002993, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 816784, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 899049, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895099, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 750640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 823862, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 654786, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101025604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714905, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 893546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 740788, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 648693, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 715725, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 765329, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101021607, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 751294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 884434, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101028279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658323, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101023860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838427, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694986, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 893016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003208, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 705478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 721619, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 804154, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802421, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 864687, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 788826, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 715842, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 746155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701621, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 889682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647782, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101032697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703042, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 646662, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 682733, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 748421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023989, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020453, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101007521, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 670103, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 950289, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 755965, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 727388, + "title": "On-farm demonstrations: deepening farmer-to-farmer learning mechanisms", + "topic": "RUR-11-2016" +},{ + "projectID": 678733, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 659780, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101003183, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 882936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703316, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724518, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 741128, + "title": "Support to research organisations to implement gender equality plans", + "topic": "SwafS-03-2016-2017" +},{ + "projectID": 705046, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 800096, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 658760, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 959198, + "title": "Addressing radicalization through social inclusion", + "topic": "SU-GOVERNANCE-09-2020" +},{ + "projectID": 796559, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 682125, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 772911, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 784972, + "title": "Overcoming market barriers and promoting deep renovation of buildings", + "topic": "EE-11-2016-2017" +},{ + "projectID": 709298, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635356, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 700844, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860755, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 759628, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101002172, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101033258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 950313, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 882168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681632, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 777111, + "title": "In-silico trials for developing and assessing biomedical products", + "topic": "SC1-PM-16-2017" +},{ + "projectID": 101006318, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 681002, + "title": "New approaches to improve predictive human safety testing", + "topic": "PHC-33-2015" +},{ + "projectID": 846260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658967, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 764738, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 759161, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 825079, + "title": "STARTS – The Arts stimulating innovation", + "topic": "ICT-32-2018" +},{ + "projectID": 861915, + "title": "Integrated approaches to food safety controls across the food chain", + "topic": "SFS-37-2019" +},{ + "projectID": 813716, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 778048, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 101016953, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 659739, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 722046, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 826078, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 872483, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 824160, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 676559, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 101005122, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 633196, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 821508, + "title": "Assessment of the uniqueness of diabetic cardiomyopathy relative to other forms of heart failure using unbiased pheno-mapping approaches", + "topic": "IMI2-2017-13-01" +},{ + "projectID": 687772, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 101004703, + "title": "Technological transformations, skills and globalization - future challenges for shared prosperity", + "topic": "TRANSFORMATIONS-18-2020" +},{ + "projectID": 860745, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 748944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 949151, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 691676, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 956621, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 872526, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 841426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690817, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 952166, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 635056, + "title": "Evaluating existing screening and prevention programmes", + "topic": "PHC-06-2014" +},{ + "projectID": 770356, + "title": "Understanding the transformation of European public administrations", + "topic": "CULT-COOP-11-2016-2017" +},{ + "projectID": 870822, + "title": "Using big data approaches in research and innovation policy making", + "topic": "TRANSFORMATIONS-13-2019" +},{ + "projectID": 764713, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 793805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706714, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 802568, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 814572, + "title": "Nanoinformatics: from materials models to predictive toxicology and ecotoxicology (RIA)", + "topic": "NMBP-14-2018" +},{ + "projectID": 957565, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 824665, + "title": "Taking stock of the application of the precautionary principle in R&I", + "topic": "SwafS-18-2018" +},{ + "projectID": 952266, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 955708, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101028644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 962547, + "title": "Addressing radicalization through social inclusion", + "topic": "SU-GOVERNANCE-09-2020" +},{ + "projectID": 707362, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678390, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 848228, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 660440, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 641974, + "title": "Consolidating global knowledge on the green economy in support of sustainable development objectives in Europe and internationally", + "topic": "SC5-14-2014" +},{ + "projectID": 779860, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 887075, + "title": "Develop bio-based high-performance materials for various and demanding applications", + "topic": "BBI-2019-SO3-R10" +},{ + "projectID": 887711, + "title": "Develop bio-based fibres and/or functional molecules to improve the performance of textile products", + "topic": "BBI-2019-SO3-R9" +},{ + "projectID": 694801, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 898949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660341, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 965286, + "title": "Digital diagnostics – developing tools for supporting clinical decisions by integrating various diagnostic data", + "topic": "SC1-BHC-06-2020" +},{ + "projectID": 779292, + "title": "Methods research for improved health economic evaluation", + "topic": "SC1-PM-20-2017" +},{ + "projectID": 863059, + "title": "Food Cloud demonstrators", + "topic": "DT-SFS-26-2019" +},{ + "projectID": 766118, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 676265, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 822625, + "title": "Towards forward-looking migration governance: addressing the challenges, assessing capacities and designing future strategies", + "topic": "MIGRATION-02-2018" +},{ + "projectID": 727072, + "title": "Intra-EU mobility and its impacts for social and economic systems", + "topic": "REV-INEQUAL-04-2016" +},{ + "projectID": 814495, + "title": "Osteoarticular tissues regeneration (RIA)", + "topic": "NMBP-22-2018" +},{ + "projectID": 861034, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 666881, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 768657, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 862790, + "title": "Reinforcing the EU agricultural knowledge base", + "topic": "RUR-17-2019" +},{ + "projectID": 731075, + "title": "User-driven e-infrastructure innovation", + "topic": "EINFRA-22-2016" +},{ + "projectID": 948073, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 642414, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101031418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721733, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 635734, + "title": "Widening industrial application of enzymatic processes", + "topic": "BIOTEC-3-2014" +},{ + "projectID": 818318, + "title": "Personalized Nutrition", + "topic": "DT-SFS-14-2018" +},{ + "projectID": 858070, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 660776, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 721841, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 720270, + "title": "FETFLAGSHIP", + "topic": "FETFLAGSHIP" +},{ + "projectID": 956265, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 843188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 952103, + "title": "AI for Health Imaging", + "topic": "DT-TDS-05-2020" +},{ + "projectID": 676338, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 710184, + "title": "European Ethics and Research Integrity Network", + "topic": "GARRI-10-2015" +},{ + "projectID": 871547, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 116020, + "title": "Real World Outcomes Across the AD Spectrum (ROADS) to Better Care", + "topic": "IMI2-2015-06-03" +},{ + "projectID": 964452, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 675743, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101006828, + "title": "Towards sustainable urban air mobility", + "topic": "MG-3-6-2020" +},{ + "projectID": 850159, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 654261, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692311, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101001270, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101037564, + "title": "Green airports and ports as multimodal hubs for sustainable and smart mobility", + "topic": "LC-GD-5-1-2020" +},{ + "projectID": 862195, + "title": "Safe by design, from science to regulation: metrics and main sectors (RIA)", + "topic": "NMBP-15-2019" +},{ + "projectID": 641805, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 749741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690090, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 951930, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 731032, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 843825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101019978, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 860974, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 874721, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 101017405, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 800858, + "title": "Interactive Computing e-infrastructure for the Human Brain Project FET Flagship (FPA)", + "topic": "SGA-INFRA-FETFLAG-HBP" +},{ + "projectID": 101016131, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 101024200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866504, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 682626, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 643398, + "title": "Foresight for health policy development and regulation", + "topic": "PHC-31-2014" +},{ + "projectID": 876190, + "title": "ECSEL-2019-1-IA", + "topic": "ECSEL-2019-1-IA" +},{ + "projectID": 639938, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 692482, + "title": "Smart Systems Integration", + "topic": "ECSEL-18-2015" +},{ + "projectID": 964644, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 802750, + "title": "FAIRification of IMI and EFPIA data", + "topic": "IMI2-2017-12-02" +},{ + "projectID": 945260, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 945151, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 777682, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 685825, + "title": "Additive manufacturing for tabletop nanofactories", + "topic": "NMP-07-2015" +},{ + "projectID": 875534, + "title": "Optimising future obesity treatment", + "topic": "IMI2-2019-17-01" +},{ + "projectID": 675111, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 847879, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 741716, + "title": "The Ethics of technologies with high socio-economic impact and Human Rights relevance", + "topic": "SwafS-18-2016" +},{ + "projectID": 644373, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 766970, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 825745, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 794455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101000751, + "title": "Agricultural markets and international trade in the context of sustainability objectives", + "topic": "RUR-21-2020" +},{ + "projectID": 826117, + "title": "Prototyping a European interoperable Electronic Health Record (EHR) exchange", + "topic": "SC1-DTH-08-2018" +},{ + "projectID": 895914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707865, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 765274, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 813409, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 779939, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 727642, + "title": "Social Sciences and Humanities Support for the Energy Union", + "topic": "LCE-31-2016-2017" +},{ + "projectID": 771292, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101016072, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 804851, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 741477, + "title": "Opening Research Organisations in the European Research Area", + "topic": "SwafS-04-2016" +},{ + "projectID": 822330, + "title": "Research for inclusive growth: addressing the socioeconomic effects of technological transformations", + "topic": "TRANSFORMATIONS-01-2018" +},{ + "projectID": 952172, + "title": "AI for Health Imaging", + "topic": "DT-TDS-05-2020" +},{ + "projectID": 813196, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 733008, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 101034347, + "title": "Optimal treatment for patients with solid tumours in Europe through Artificial Intelligence", + "topic": "IMI2-2020-23-04" +},{ + "projectID": 862882, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 860245, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 723649, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 822781, + "title": "Supply and demand-oriented economic policies to boost robust growth in Europe – Addressing the social and economic challenges in Europe", + "topic": "TRANSFORMATIONS-14-2018" +},{ + "projectID": 727585, + "title": "PCP - eHealth innovation in empowering the patient", + "topic": "SC1-PM-12-2016" +},{ + "projectID": 101025635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963910, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 642623, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 723032, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 645553, + "title": "Human-centric Digital Age", + "topic": "ICT-31-2014" +},{ + "projectID": 101034344, + "title": "A platform for accelerating biomarker discovery and validation to support therapeutics development for neurodegenerative diseases", + "topic": "IMI2-2020-23-03" +},{ + "projectID": 953169, + "title": "Biological scaffolds for tissue regeneration and repair (RIA)", + "topic": "NMBP-21-2020" +},{ + "projectID": 766276, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 637308, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 707727, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101017884, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 795958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692191, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 856495, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 825162, + "title": "HTA research to support evidence-based healthcare", + "topic": "SC1-BHC-26-2018" +},{ + "projectID": 682982, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 954798, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 747614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 874837, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 813200, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 653227, + "title": "Conflict prevention and peace building topic 1: Enhancing the civilian conflict prevention and peace building capabilities of the EU", + "topic": "BES-12-2014" +},{ + "projectID": 101026906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963845, + "title": "Advancing the safety assessment of chemicals without the use of animal testing", + "topic": "SC1-BHC-11-2020" +},{ + "projectID": 774293, + "title": "Sweeteners and sweetness enhancers", + "topic": "SFS-40-2017" +},{ + "projectID": 833115, + "title": "Information and data stream management to fight against (cyber)crime and terrorism", + "topic": "SU-FCT03-2018-2019-2020" +},{ + "projectID": 101022649, + "title": "International Cooperation with USA and/or China on alternative renewable fuels from sunlight for energy, transport and chemical storage", + "topic": "LC-SC3-RES-3-2020" +},{ + "projectID": 964353, + "title": "Addressing low vaccine uptake", + "topic": "SC1-BHC-33-2020" +},{ + "projectID": 694812, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 665647, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 847596, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 945539, + "title": "HBP FET Flagship core project", + "topic": "SGA-FETFLAG-HBP-2019" +},{ + "projectID": 644798, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 645884, + "title": "The economic impact of the Innovation Union", + "topic": "INSO-3-2014" +},{ + "projectID": 745894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 722609, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 860801, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 825575, + "title": "Rare Disease European Joint Programme Cofund", + "topic": "SC1-BHC-04-2018" +},{ + "projectID": 634201, + "title": "Developing and comparing new models for safe and efficient, prevention oriented health and care systems", + "topic": "PHC-23-2014" +},{ + "projectID": 770453, + "title": "The European Union and the global challenge of migration", + "topic": "ENG-GLOBALLY-03-2017" +},{ + "projectID": 758430, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101016967, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 899991, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 101003806, + "title": "Improving the sorting, separation and recycling of composite and multi-layer materials", + "topic": "CE-SC5-24-2020" +},{ + "projectID": 959143, + "title": "The Common Foreign and Security Policy and the expanding scope of the EU's external engagement", + "topic": "SU-GOVERNANCE-07-2020" +},{ + "projectID": 764474, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 675351, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 681109, + "title": "Global Alliance for Chronic Diseases. Prevention and treatment of lung diseases", + "topic": "HCO-06-2015" +},{ + "projectID": 945119, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 101028723, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 779237, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 777439, + "title": "Innovating SMEs - segmentation along lifecycle and sectors (analytical research activity)", + "topic": "INNOSUP-07-2017" +},{ + "projectID": 785907, + "title": "HBP FET Flagship core project", + "topic": "SGA-FETFLAG-HBP-2017" +},{ + "projectID": 860715, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 874790, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 741402, + "title": "Moving from constraints to openings, from red lines to new frames in Horizon 2020", + "topic": "SwafS-09-2016" +},{ + "projectID": 778398, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 737817, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 703211, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661099, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 848109, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 899549, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 649705, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 951393, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 642892, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 801159, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 797396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875221, + "title": "Large Scale pilots of personalised & outcome based integrated care", + "topic": "SC1-DTH-11-2019" +},{ + "projectID": 642116, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 895685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 814410, + "title": "Osteoarticular tissues regeneration (RIA)", + "topic": "NMBP-22-2018" +},{ + "projectID": 841281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 737586, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 832671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 814425, + "title": "Risk Governance of nanotechnology (RIA)", + "topic": "NMBP-13-2018" +},{ + "projectID": 101008193, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 731143, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 883275, + "title": "Digital security, privacy, data protection and accountability in critical sectors", + "topic": "SU-DS05-2018-2019" +},{ + "projectID": 101022492, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 703493, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 812656, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 116030, + "title": "Development of Quantitative System Toxicology (QST) approaches to improve the understanding of the safety of new medicines", + "topic": "IMI2-2015-06-01" +},{ + "projectID": 685614, + "title": "Fibre-based materials for non-clothing applications", + "topic": "NMP-22-2015" +},{ + "projectID": 824087, + "title": "Connecting ESFRI infrastructures through Cluster projects", + "topic": "INFRAEOSC-04-2018" +},{ + "projectID": 952516, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 894345, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 722012, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 885876, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 814249, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 798619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 817578, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 818123, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 957403, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 891030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637324, + "title": "Space Weather", + "topic": "PROTEC-1-2014" +},{ + "projectID": 878133, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636862, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 750579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 636281, + "title": "Towards seamless mobility addressing fragmentation in ITS deployment in Europe", + "topic": "MG-7.2a-2014" +},{ + "projectID": 655369, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 633592, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 703570, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770756, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 777110, + "title": "Grant to identified beneficiary to support the Chair of the High Level Expert Group on the interim evaluation of Horizon 2020 *", + "topic": "IBA-19-CHAIR-2017" +},{ + "projectID": 730659, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 720579, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 760564, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 831041, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 831154, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 878950, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 853834, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 951011, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 867423, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 101003408, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 815811, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101009302, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 823312, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882436, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833562, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854428, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831313, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 873312, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890930, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854419, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858615, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828436, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866899, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858172, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827344, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854474, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836435, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859529, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 947280, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858934, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827313, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 848951, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854984, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837636, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 848560, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816514, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858879, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868038, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887954, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881113, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 953297, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888684, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826885, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101009382, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 888561, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888395, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836564, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876828, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855556, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743399, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 868579, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739520, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 883740, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832211, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876599, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879608, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887639, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 863417, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832358, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874801, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854354, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816526, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960999, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889158, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887306, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 848631, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866584, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849969, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888290, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831355, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 954555, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835659, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101009247, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 888793, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873840, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877859, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875615, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946938, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826866, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812021, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827407, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880707, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881076, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823081, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877007, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816580, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873765, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823217, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875863, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876576, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738428, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 826726, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 872800, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877746, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 955073, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866965, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 967831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837131, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874144, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873252, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 961203, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873538, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 959546, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 856120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889515, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744045, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 876347, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823331, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833066, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867732, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873862, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887603, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867798, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880897, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811930, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816815, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850192, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879255, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875785, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946648, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 967328, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 961480, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878333, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816892, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858630, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875918, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873261, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945804, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882323, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831367, + "title": "ENTERPRISE EUROPE NETWORK H2020 ASSOCIATED COUNTRIES", + "topic": "H2020-EEN-GA3" +},{ + "projectID": 827296, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889126, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 830970, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 876211, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 872707, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859001, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887644, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816273, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831220, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 826910, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886114, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868040, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822253, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815991, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868652, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 969112, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877773, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888267, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876676, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827034, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837135, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828572, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877532, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888129, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885521, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739889, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 816093, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867463, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816108, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743655, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 879510, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826939, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866982, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 953550, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954151, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849827, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889358, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836869, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811866, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826595, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822142, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880349, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868216, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878187, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946275, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946286, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878326, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946280, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888379, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849085, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882316, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859545, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873912, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889522, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823337, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868024, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946437, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946836, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854795, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822144, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849481, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827453, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 959321, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824755, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816230, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815049, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888213, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837634, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877603, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876290, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859337, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836037, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811953, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873373, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680941, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 875806, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876021, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946140, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887317, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827952, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816569, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837118, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880896, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868136, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836187, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877807, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816414, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691556, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 858438, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817161, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868265, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743493, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 848907, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837148, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878318, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739525, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 744266, + "title": "2D CONSULTATION EEN BBC H2020", + "topic": "H2020-EEN-GA" +},{ + "projectID": 876779, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877359, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101038068, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101003393, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 643308, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674652, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674391, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 642995, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 643315, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 643332, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674800, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674837, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674802, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643383, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674866, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643379, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 643311, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 643312, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 811143, + "title": "European Union Contest for Young Scientists (EUCYS) 2018", + "topic": "IBA-SWFS-EUCYS-2018" +},{ + "projectID": 788557, + "title": "Science4Refugees - Support to highly skilled refugee scientists", + "topic": "SwafS-26-2017" +},{ + "projectID": 101035522, + "title": "EURAXESS Tunisia start-up", + "topic": "IBA-SwafS-EURAXESS-TN-2020" +},{ + "projectID": 786332, + "title": "Science4Refugees - Support to highly skilled refugee scientists", + "topic": "SwafS-26-2017" +},{ + "projectID": 700259, + "title": "Border crossing points topic 2: Exploring new modalities in biometric-based border checks", + "topic": "BES-06-2015" +},{ + "projectID": 663021, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 728516, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 745088, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 790798, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 791208, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 744029, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 650476, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 734035, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 736300, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 718785, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 674563, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 763120, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 775251, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 740929, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 739524, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 635518, + "title": "Community building and competence development for SME Instrument coaching", + "topic": "INNOSUP-9-2014" +},{ + "projectID": 878985, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 730848, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 805841, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 730834, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 879514, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 880153, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 759629, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 853662, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 879886, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 776956, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 880060, + "title": "H2020 ENTREPRISE EUROPE NETWORK GA4 2020-2021", + "topic": "H2020-EEN-GA4" +},{ + "projectID": 967555, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 970897, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 861845, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 949186, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 957068, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 959398, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 776799, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 947783, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 955809, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 853668, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 824216, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 959271, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 957152, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 959646, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 824222, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 870580, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 879995, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 730806, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 870496, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 970887, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 950085, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 826027, + "title": "Support to the FISA-EuradWaste Conference on Euratom research and training policies", + "topic": "IBA-EURATOM-FISA-2018" +},{ + "projectID": 879678, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 822257, + "title": "Training and information programme following association of Ukraine in Euratom in 2016", + "topic": "IBA-EURATOM-Ukraine-2018" +},{ + "projectID": 867453, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 666726, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 662883, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 744921, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 782070, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 809307, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 778742, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 651495, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 791596, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 775530, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 729743, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 776136, + "title": "GEOSS web portal", + "topic": "IBA-SC5-GEOSS-2017" +},{ + "projectID": 673476, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 672390, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 744822, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 781088, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 791490, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 781834, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 673635, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 663392, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 666427, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 674923, + "title": "SCIENCE WAF SOCIETY", + "topic": "SCIENCE WAF SOCIETY" +},{ + "projectID": 870232, + "title": "EURAXESS Georgia start-up", + "topic": "IBA-SWAFS-EURAXESS-GE-2019" +},{ + "projectID": 781638, + "title": "The Euroscience Open Forum (ESOF) 2018", + "topic": "IBA-SWFS-ESOF-2017" +},{ + "projectID": 741520, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 833923, + "title": "Digital security, privacy, data protection and accountability in critical sectors", + "topic": "SU-DS05-2018-2019" +},{ + "projectID": 813132, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 804003, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 825942, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 683680, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 835857, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 754949, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 665777, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 737515, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 884927, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101035816, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 737604, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 669194, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 662125, + "title": "Education and training (Bologna and Copenhagen processes)", + "topic": "NFRP-10-2015" +},{ + "projectID": 670337, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 742922, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 805478, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 641392, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 812792, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 670261, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 810640, + "title": "Support to the OAPEN initiative", + "topic": "IBA-ERC-OAPEN-2017" +},{ + "projectID": 862545, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 787487, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 966774, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 737669, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 713728, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 641093, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 875690, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 640955, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 802354, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 640921, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 885435, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 720274, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 633002, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 101035497, + "title": "Presidency event (conference): ''Climate action, environment, resource efficiency and raw materials' – Portugal, 2021", + "topic": "IBA-SC5-Portugal-2020" +},{ + "projectID": 101019366, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 804503, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 742231, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101021229, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101019653, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101019327, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 966765, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 741643, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 882332, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101034194, + "title": "Support to the Europe PMC initiative", + "topic": "IBA-ERC-EPMC-2020" +},{ + "projectID": 790272, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 737587, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 780669, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 804283, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 803644, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 883313, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 699257, + "title": "ERC-14", + "topic": "ERC-14" +},{ + "projectID": 740349, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 862032, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 837225, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101021078, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 741215, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 801715, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 964352, + "title": "Support to the OAPEN initiative", + "topic": "IBA-ERC-OAPEN-2019" +},{ + "projectID": 670759, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 875532, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 804226, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101018172, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 883219, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 779437, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 670876, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 802482, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 879408, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 801790, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 713671, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 957502, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 768210, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101019191, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 824208, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 653450, + "title": "Crisis management topic 8: Trans-national co-operation among National Contact Points (NCPs) for Security", + "topic": "DRS-08-2014" +},{ + "projectID": 723120, + "title": "Capacity-building for National Contact Points (NCPs) for SMEs and Access to Risk Finance under Horizon 2020", + "topic": "INNOSUP-06-2016" +},{ + "projectID": 869817, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 869227, + "title": "Visionary and integrated solutions to improve well-being and health in cities", + "topic": "SC5-14-2019" +},{ + "projectID": 741769, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 802979, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101000002, + "title": "Capacity-building and transnational cooperation for National Contact Points (NCPs) for the EIC and Access to Risk Finance", + "topic": "IBA-EIC-NCP-2019" +},{ + "projectID": 754423, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 686527, + "title": "FET Take-Up Coordination and Support Activities 2015", + "topic": "FETOPEN-CSA-FETTAKEUP-2015" +},{ + "projectID": 805425, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 851204, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 850506, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101034955, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101034792, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 945773, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101035014, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 850877, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 946174, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 777795, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 953820, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 818973, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 817621, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101005292, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101036117, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 633397, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 955447, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 954862, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 633305, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 818325, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 955373, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 818781, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 802774, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802756, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 743032, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 803338, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 804083, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 713713, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 814759, + "title": "Debate Science! European Youth Parliaments", + "topic": "IBA-SWAFS-Parliaments-2017" +},{ + "projectID": 742705, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 692700, + "title": "MSCA", + "topic": "MSCA" +},{ + "projectID": 818355, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 743736, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 945526, + "title": "Presidency conference(s)", + "topic": "IBA-MSCA-HR-Presidency-Conf-2019" +},{ + "projectID": 955388, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 955381, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 885107, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 672308, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 721182, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 680608, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 723003, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 689515, + "title": "New metallurgical systems", + "topic": "SC5-11e-2015" +},{ + "projectID": 818421, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 817676, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 955402, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 819158, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 722341, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 955366, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 824748, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2018" +},{ + "projectID": 101034471, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 640679, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 811208, + "title": "Presidency conference(s)", + "topic": "IBA-MSCA-Presidency-Conf-2017" +},{ + "projectID": 101036007, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 722945, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 955277, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 819129, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 633382, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 955287, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 955365, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 818528, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101036083, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 101004461, + "title": "Presidency conference", + "topic": "IBA-MSCA-DE-Presidency-Conf-2020" +},{ + "projectID": 101036189, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 884711, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 818803, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 633310, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 955327, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 870148, + "title": "Open Innovation for collaborative production engineering (IA)", + "topic": "DT-FOF-05-2019" +},{ + "projectID": 955020, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 882396, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 803118, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 883395, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 776838, + "title": "Pre-commercial procurement on soil decontamination", + "topic": "SC5-26-2017" +},{ + "projectID": 804388, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 899963, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 741238, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 664876, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101038043, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 684310, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 734845, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645497, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 673092, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 808270, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 729448, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 790610, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 790070, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 779604, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 775126, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 722955, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 773408, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 663196, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 669811, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 731996, + "title": "Pre-Commercial Procurement open", + "topic": "ICT-34-2016" +},{ + "projectID": 729315, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 732309, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 775892, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 964678, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862311, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 768093, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 779984, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 644429, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 781473, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 791958, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 852111, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 665215, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 736407, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 784560, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 841112, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 899422, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 691262, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 780460, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 807694, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101020304, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 773534, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 782890, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 780738, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 672499, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 745040, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 830845, + "title": "CSA-for-Lighthouse Initiative Industry4.E", + "topic": "ECSEL-2018-3-CSA-Industry4E" +},{ + "projectID": 666534, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 789819, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 652527, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 692765, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 737546, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101001702, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001759, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001283, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001857, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001694, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101002726, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101000396, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001835, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101002090, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001282, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001106, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001993, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101003072, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 644596, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 869746, + "title": "Assessing and fostering the impacts of Research and Innovation Actions (RIA) and Innovation Actions (IA) granted by Societal Challenge 5 in 2014-2015", + "topic": "SC5-22-2019" +},{ + "projectID": 633275, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 856421, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 963840, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 644184, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 802990, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 803589, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101000850, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 641166, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 963875, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 803060, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 957543, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101001731, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 804490, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 669655, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101022061, + "title": "Strategic pre-commercial procurements of innovative, advanced systems to support security", + "topic": "SU-GM02-2018-2020" +},{ + "projectID": 786725, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 787098, + "title": "Human Factor for the Prevention, Investigation, and Mitigation of criminal and terrorist acts", + "topic": "SEC-07-FCT-2016-2017" +},{ + "projectID": 885475, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 802414, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788793, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 693017, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 787929, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 787450, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 809647, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 786758, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 789013, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 786762, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 804326, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 882679, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 804240, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 696857, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 742290, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 742289, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 770256, + "title": "The European Union and Central Asia", + "topic": "ENG-GLOBALLY-07-2017" +},{ + "projectID": 755937, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 726258, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 710732, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 101004099, + "title": "Implementation of the OECD-European Commission administrative arrangement", + "topic": "IBA-SC6-OECD-2020" +},{ + "projectID": 674888, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 763215, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 775077, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 727107, + "title": "Virtual museums and social platform on European digital heritage, memory, identity and cultural interaction.", + "topic": "CULT-COOP-08-2016" +},{ + "projectID": 101035815, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 101035813, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 789283, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 803608, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 850488, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 862304, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101020792, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 802437, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 789598, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 804920, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 884382, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 802825, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 727597, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 802967, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101001965, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 661292, + "title": "Fostering the network of National Contact Points", + "topic": "NFRP-13-2015" +},{ + "projectID": 635656, + "title": "Science with and for Society National Contact Points (NCPs) in H2020", + "topic": "GARRI-7-2014" +},{ + "projectID": 101005982, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 640603, + "title": "Trans-national cooperation among Marie Skłodowska-Curie National Contact Points (NCP)", + "topic": "MSCA-NCP-2014" +},{ + "projectID": 780160, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 857769, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of Science with and for Society: follow-up project", + "topic": "IBA-SWAFS-NCP-2018" +},{ + "projectID": 645216, + "title": "Trans-national co-operation among National Contact Points", + "topic": "ICT-33-2014" +},{ + "projectID": 788572, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 740688, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 636771, + "title": "Methodologies, tools and indicators for cross-sectorial sustainability assessment of energy and resource efficient solutions in the process industry", + "topic": "SPIRE-04-2014" +},{ + "projectID": 101020331, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 885707, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 737549, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 862082, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 755445, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 963913, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 790341, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 679386, + "title": "Energy and resource management systems for improved efficiency in the process industries", + "topic": "SPIRE-06-2015" +},{ + "projectID": 790654, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 804662, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101001429, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101035812, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 954776, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 883069, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 805436, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101020038, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101002086, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 954418, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 762583, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 787441, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 685288, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 862565, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101020615, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 767412, + "title": "Support for the enhancement of the impact of SPIRE PPP projects", + "topic": "SPIRE-11-2017" +},{ + "projectID": 101002660, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101002966, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 954755, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 818237, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 742683, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 954337, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 951549, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 954912, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 713652, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 680916, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 742436, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 899727, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 789817, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 741354, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101004534, + "title": "Evolving European media landscapes and Europeanisation", + "topic": "TRANSFORMATIONS-10-2020" +},{ + "projectID": 742195, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101020613, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101035792, + "title": "Ensuring greater synergies by testing new collaboration mechanisms between the EIT Innovation Communities and the Enhanced EIC Pilot in support of the the Green Deal and other Union policy priorities - Health", + "topic": "IBA-EIC-HEALTH-2020" +},{ + "projectID": 818968, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 722990, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 101036173, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 761488, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 801708, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 674867, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 744277, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831206, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 820561, + "title": "Energy and resource flexibility in highly energy intensive industries (IA 50%)", + "topic": "CE-SPIRE-03-2018" +},{ + "projectID": 101017697, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 768570, + "title": "Support for enhancing and demonstrating the impact of KET Biotechnology projects", + "topic": "BIOTEC-08-2017" +},{ + "projectID": 817654, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 664873, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 767058, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 812577, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 737473, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 953420, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 882751, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 704340, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101006349, + "title": "Science education outside the classroom", + "topic": "SwafS-24-2020" +},{ + "projectID": 899224, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101001889, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 810377, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 740450, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SEC-05-DRS-2016-2017" +},{ + "projectID": 883098, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 740618, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 732665, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 687786, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 804286, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 786731, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 785632, + "title": "MSCA National Contact Points", + "topic": "MSCA-NCP-2017" +},{ + "projectID": 803211, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802885, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 669972, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 804104, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101019628, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 802070, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788558, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101018280, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 731771, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 101021354, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 723698, + "title": "Zero-defect strategies at system level for multi-stage manufacturing in production lines", + "topic": "FOF-03-2016" +},{ + "projectID": 899673, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 824663, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2018" +},{ + "projectID": 818910, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 644780, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 640887, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101020534, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 710534, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2015" +},{ + "projectID": 955428, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 824217, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 687328, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 863944, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865554, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 864583, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865931, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 863929, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866239, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866357, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865165, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 864052, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 864642, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866350, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866489, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865474, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866155, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865971, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865463, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 864498, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 863795, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 864137, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865617, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 744142, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 781760, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 803380, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 684591, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 808861, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 696186, + "title": "Increasing energy performance of existing buildings through process and organisation innovations and creating a market for deep renovation", + "topic": "EE-05-2015" +},{ + "projectID": 735178, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 734032, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 729107, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 649342, + "title": "Socioeconomic research on energy efficiency", + "topic": "EE-12-2014" +},{ + "projectID": 775159, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 736499, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 681163, + "title": "Energy 75 per cent reimbursement", + "topic": "Energy75" +},{ + "projectID": 764014, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 650242, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 774145, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 663466, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 694816, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2015" +},{ + "projectID": 735565, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 775337, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 649770, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2014" +},{ + "projectID": 807809, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 692447, + "title": "Energy", + "topic": "Energy" +},{ + "projectID": 673793, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 696112, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2015" +},{ + "projectID": 785036, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 784986, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 785048, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 728594, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 768079, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 691911, + "title": "Supporting coordination of national R&D activities", + "topic": "LCE-19-2015" +},{ + "projectID": 697982, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 792104, + "title": "Demonstration of the most promising advanced biofuel pathways", + "topic": "LCE-19-2016-2017" +},{ + "projectID": 773606, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 745341, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 717626, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 674413, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 720183, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 735961, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 807094, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 683913, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 672075, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 783750, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 741192, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 666167, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 685347, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 726675, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 781562, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 662728, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 683891, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 671853, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 662804, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 781808, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 768299, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 763038, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 638284, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 743225, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 640093, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637842, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 639272, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637691, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637780, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 636808, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 640525, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638893, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637530, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638694, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 640488, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638514, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638121, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637645, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638644, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 639840, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637915, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101001407, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 803193, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 646347, + "title": "Presidency events", + "topic": "NMP-38-2014" +},{ + "projectID": 722266, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 963976, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 866043, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865624, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 810586, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 802242, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 638435, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 812816, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 838058, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 737476, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 838081, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 804394, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101019016, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 665654, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 741112, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 740963, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 865032, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 883758, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 847555, + "title": "Availability and use of research infrastructures for education, training and competence building", + "topic": "NFRP-2018-7" +},{ + "projectID": 633162, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 803077, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 692286, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 713804, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 864877, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 812309, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 865003, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 790380, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 670211, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101000981, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 945081, + "title": "Safety assessments for Long Term Operation (LTO) upgrades of Generation II and III reactors", + "topic": "NFRP-2019-2020-02" +},{ + "projectID": 952008, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 636709, + "title": "Materials for building envelope", + "topic": "EeB-01-2014" +},{ + "projectID": 952601, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 766733, + "title": "Integration of Demand Response in Energy Management Systems while ensuring interoperability through Public Private Partnership (EeB PPP)", + "topic": "EE-12-2017" +},{ + "projectID": 662149, + "title": "Specific support to the work of the Sustainable Nuclear Energy Technology Platform", + "topic": "NFRP-15-2015" +},{ + "projectID": 952106, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 727427, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 761448, + "title": "Smart Anything Everywhere Initiative", + "topic": "ICT-04-2017" +},{ + "projectID": 639729, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 787842, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 786680, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 954506, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 101002897, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 700399, + "title": "Supply Chain Security topic 1: Development of an enhanced non-intrusive (stand-off) scanner", + "topic": "BES-08-2015" +},{ + "projectID": 780458, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 712951, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 665868, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2014" +},{ + "projectID": 857636, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 952366, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 952373, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 952289, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 952464, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 952369, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 729458, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 824361, + "title": "Support for networking activities and impact assessment for road automation", + "topic": "DT-ART-02-2018" +},{ + "projectID": 719024, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 777627, + "title": "Smart maintenance and human capital", + "topic": "S2R-OC-CCA-01-2017" +},{ + "projectID": 730668, + "title": "Development of concepts towards the next generation of traction systems and management of wheel/rail adhesion", + "topic": "S2R-CFM-IP1-01-2016" +},{ + "projectID": 893100, + "title": "Behavioural Economics in ATM", + "topic": "SESAR-ER4-08-2019" +},{ + "projectID": 821084, + "title": "Helicopter carbon composite engine deck", + "topic": "JTI-CS2-2017-CfP07-AIR-02-52" +},{ + "projectID": 101029004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 777599, + "title": "IP4 overall integration and demonstration", + "topic": "S2R-CFM-IP4-02-2017" +},{ + "projectID": 101032961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 736245, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 820819, + "title": "Characterization of the resistance of TiAl turbine blades to impact", + "topic": "JTI-CS2-2017-CfP07-ENG-01-29" +},{ + "projectID": 884426, + "title": "Automatic Haptic System Test Bench for Active Inceptors", + "topic": "JTI-CS2-2019-CfP10-SYS-02-58" +},{ + "projectID": 897827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101037053, + "title": "Green airports and ports as multimodal hubs for sustainable and smart mobility", + "topic": "LC-GD-5-1-2020" +},{ + "projectID": 895841, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865197, + "title": "Innovative Nacelle cowl opening system", + "topic": "JTI-CS2-2018-CfP09-LPA-01-71" +},{ + "projectID": 662659, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 882758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 711257, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 672081, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 734404, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 763024, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 790934, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 893348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890456, + "title": "Future ATM Architecture", + "topic": "SESAR-ER4-27-2019" +},{ + "projectID": 101026701, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864158, + "title": "Rear End Structural Test Program - Low level tests", + "topic": "JTI-CS2-2018-CfP09-LPA-01-64" +},{ + "projectID": 773572, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 890648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840913, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 652350, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 716499, + "title": "Innovative design of acoustic treatment for air conditioning system", + "topic": "JTI-CS2-2015-CFP02-SYS-02-11" +},{ + "projectID": 885971, + "title": "Innovative kinematic analysis to incorporate multiple functions within a movable surface", + "topic": "JTI-CS2-2019-CFP10-FRC-01-28" +},{ + "projectID": 728100, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 777576, + "title": "Energy harvesting methodologies for trackside and on-board signalling and communication devices. Adaptation of already existing technologies for developing a purely on-board Train Integrity", + "topic": "S2R-OC-IP2-02-2017" +},{ + "projectID": 717081, + "title": "Analysis of centrifugal compressor instabilities occurring with vaneless diffusor, at low mass flow momentum", + "topic": "JTI-CS2-2015-CFP02-SYS-02-10" +},{ + "projectID": 672860, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 814975, + "title": "Marine Accident Response", + "topic": "MG-2-2-2018" +},{ + "projectID": 895029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777522, + "title": "Technical framework for attractive railway services", + "topic": "S2R-CFM-IP4-01-2017" +},{ + "projectID": 717186, + "title": "Prototype Tooling for Sub-Assembly, Final Assembly and Transport of the Rotorless tail for the Compound RC.", + "topic": "JTI-CS2-2015-CFP02-AIR-02-14" +},{ + "projectID": 730849, + "title": "Research into new radical ways of changing trains between tracks", + "topic": "S2R-OC-IP3-01-2016" +},{ + "projectID": 886698, + "title": "Vapor Cycle System - Heat Exchanger performance 3D modeling with different new low GWP refrigerants", + "topic": "JTI-CS2-2019-CfP10-SYS-02-61" +},{ + "projectID": 673659, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 701250, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 842044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 837036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 685630, + "title": "HVDC Starter/Generator", + "topic": "JTI-CS2-2014-CFP01-FRC-02-05" +},{ + "projectID": 101032766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701923, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795765, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703352, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702037, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701523, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 703009, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101022238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708867, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 844724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025184, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 846282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 887530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799288, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702989, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835876, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892406, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708096, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025719, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 866074, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 846012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 783261, + "title": "Safe integration of drones", + "topic": "SESAR-VLD1-10-2016" +},{ + "projectID": 754811, + "title": "Development of scaled models for Synthetic Jet Actuators based on Aerodynamic Characterization in CFD, Ground and Wind Tunnel Testing", + "topic": "JTI-CS2-2016-CFP04-LPA-01-27" +},{ + "projectID": 784190, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 777888, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 864723, + "title": "Material modelling platform for generation of thermoplastic material allowable", + "topic": "JTI-CS2-2018-CFP09-AIR-02-73" +},{ + "projectID": 672777, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 886754, + "title": "Innovative weight measurement system for Tilt Rotor application", + "topic": "JTI-CS2-2019-CFP10-AIR-02-83" +},{ + "projectID": 699306, + "title": "ATM Architecture", + "topic": "Sesar-10-2015" +},{ + "projectID": 773705, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101006923, + "title": "Improving impact and broadening stakeholder engagement in support of transport research and innovation", + "topic": "MG-4-10-2020" +},{ + "projectID": 730842, + "title": "Interoperability Framework Converters", + "topic": "S2R-OC-IP4-02-2016" +},{ + "projectID": 882300, + "title": "Low NOx / Low soot injection system design for spinning combustion technology", + "topic": "JTI-CS2-2019-CfP10-ENG-01-43" +},{ + "projectID": 826054, + "title": "Development of technology demonstrators for the next generation of traction systems and adhesion management systems", + "topic": "S2R-CFM-IP1-01-2018" +},{ + "projectID": 730830, + "title": "Technology feasibility studies supporting the development of next generation TCMS, and safe control for brakes", + "topic": "S2R-OC-IP1-02-2016" +},{ + "projectID": 740272, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101001295, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 804474, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101019620, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 812583, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 782825, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101006687, + "title": "Next generation electrified vehicles for urban and suburban use", + "topic": "LC-GV-08-2020" +},{ + "projectID": 826324, + "title": "Modern methodologies and verifications for GNSS in Railways and virtual test environment", + "topic": "S2R-OC-IP2-02-2018" +},{ + "projectID": 640316, + "title": "Improving skills and knowledge base in European Aviation", + "topic": "MG-1.6-2014" +},{ + "projectID": 874463, + "title": "PJ.09 W2 Digital Network Management Services", + "topic": "SESAR-IR-VLD-WAVE2-07-2019" +},{ + "projectID": 762960, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 820842, + "title": "Novel Bearings", + "topic": "JTI-CS2-2017-CfP07-ENG-03-21" +},{ + "projectID": 101007816, + "title": "Optimization of APU Exhaust Muffler Thermal Barrier and Air Intakes construction Technologies", + "topic": "JTI-CS2-2020-CfP11-LPA-01-92" +},{ + "projectID": 945529, + "title": "Technology Evaluator 2 GAM 2020", + "topic": "CS2-GAM-2020-TE2" +},{ + "projectID": 734165, + "title": "Validation and Demonstration Engineering", + "topic": "SESAR.IR-VLD.Wave1-03-2015" +},{ + "projectID": 775827, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 874475, + "title": "PJ.20 W2 Master Planning", + "topic": "SESAR-IR-VLD-WAVE2-02-2019" +},{ + "projectID": 101017587, + "title": "Virtual Centre", + "topic": "SESAR-WAVE3-01-2020" +},{ + "projectID": 662499, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 781771, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 785411, + "title": "Rotor’s Flight Test Instrumentation on demonstrator Fast Rotorcraft Project", + "topic": "JTI-CS2-2017-CFP06-FRC-02-27" +},{ + "projectID": 865118, + "title": "Environmental regulations and policies", + "topic": "JTI-CS2-2018-CfP09-TE2-01-09" +},{ + "projectID": 831743, + "title": "Support to the ITF Decarbonising Transport project", + "topic": "IBA-SC4-OA4-2018" +},{ + "projectID": 734153, + "title": "Integrated Surface Management", + "topic": "SESAR.IR-VLD.Wave1-05-2015" +},{ + "projectID": 786001, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 664205, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 881784, + "title": "Advanced obstacle detection and track intrusion system for autonomous freight train", + "topic": "S2R-OC-IP5-02-2019" +},{ + "projectID": 755543, + "title": "High fidelity Large Eddy Simulation using reduced model for engine broadband noise prediction", + "topic": "JTI-CS2-2016-CFP04-LPA-01-19" +},{ + "projectID": 101014984, + "title": "Advanced Functions towards Autonomous Trains", + "topic": "S2R-CFM-IPX-01-2020" +},{ + "projectID": 807087, + "title": "Technology Evaluator", + "topic": "CS2-GAM-2018-TE2" +},{ + "projectID": 762204, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101017622, + "title": "Integrated Runway Throughput and Terminal Efficiency", + "topic": "SESAR-WAVE3-06-2020" +},{ + "projectID": 882055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896272, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101022577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832738, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 898970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 704956, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 787201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706672, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704005, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 894619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003441, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 951735, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 890316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003396, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 800238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 869520, + "title": "Development of commercial activities and services through the use of GEOSS and Copernicus data", + "topic": "SC5-16-2019" +},{ + "projectID": 845267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 713735, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101031606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 887344, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101019008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844285, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840383, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895484, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703959, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101030496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794563, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799573, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894411, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 884596, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101026776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787470, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 957524, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101033663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841261, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 790623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702104, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 894737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101018714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896518, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703322, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101031817, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024078, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026065, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702768, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704582, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 701679, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101018554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703071, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706550, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706289, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700946, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 799419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893034, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793580, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703854, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840360, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 888918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890452, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705222, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842125, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 846552, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 886478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891578, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702750, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701264, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797879, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707485, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 892200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891517, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025997, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 837826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701836, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703145, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025125, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892773, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706320, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 793662, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 886127, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101021791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 886190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706473, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835468, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843960, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705104, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 797898, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838445, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795552, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 789476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836428, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026870, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705217, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101030264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 705577, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793043, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703269, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 838237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799411, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 885866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 842804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799126, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027428, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 811087, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 704127, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 797464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 701558, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 844254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 810329, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 810310, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 705574, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 810318, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 810857, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 705225, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 886365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 785789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101018097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705024, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025388, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 709230, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702529, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 793769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891256, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 861257, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 838203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707840, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 898294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887406, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795428, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842817, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032127, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 889279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 837190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 884038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707996, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860850, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 955830, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 842064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 786281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 860462, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101032664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 955907, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101018992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956274, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 872706, + "title": "Building the SwafS knowledge base", + "topic": "SwafS-20-2018-2019" +},{ + "projectID": 705989, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 706741, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 860921, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 798157, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794913, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101022539, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703829, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 882314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028625, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705247, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101028617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708556, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024986, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032054, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 835574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703561, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030005, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032582, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 885985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896616, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703516, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 894128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 832298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705643, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101024166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706699, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101030577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025500, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 883785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101019431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702428, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843660, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029127, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795753, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 832700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 887503, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794868, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839517, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101027131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702714, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 777630, + "title": "Satellite and autonomous monitoring systems’ solution", + "topic": "S2R-OC-IP3-03-2017" +},{ + "projectID": 101032492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702470, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701844, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707253, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101020227, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794649, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 791122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707597, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842868, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 846810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894289, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699941, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025031, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 881822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101022941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702004, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 893181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799302, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838982, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 898520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798248, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025586, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101027941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702649, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 742703, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101015416, + "title": "Modelling of the Moving Block system specification and future architecture (TD2.3) + RAIM algorithms, Assessment Report and support for Railway Minimum Operational Performance Standards (TD2.4)", + "topic": "S2R-OC-IP2-01-2020" +},{ + "projectID": 101030767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788321, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 638760, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 688873, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 101029605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 713738, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 787344, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865176, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 799171, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870313, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 101036214, + "title": "Presidency event: Launch of 2021 ESFRI Roadmap", + "topic": "IBA-INFRA-ESFRI-Presidency-2021" +},{ + "projectID": 845508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804582, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 897274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786624, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101019751, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 802759, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 885301, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 754554, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 839498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 741884, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 767854, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 843839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692671, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 792916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703401, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101029832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798392, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101006436, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 101019474, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101022004, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 101032093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 780842, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 803158, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101017089, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 957228, + "title": "Blockchain for the Next Generation Internet", + "topic": "ICT-54-2020" +},{ + "projectID": 825464, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 101017015, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 684567, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 762791, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 683550, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 836270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894116, + "title": "ATM Role in Intermodal Transport", + "topic": "SESAR-ER4-10-2019" +},{ + "projectID": 702019, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 745054, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 726510, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 683730, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 829061, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 718254, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 673134, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 651039, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 778475, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 673315, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 887917, + "title": "Use tree species and/or varieties to create new bio-based value chains", + "topic": "BBI-2019-SO1-R1" +},{ + "projectID": 718784, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 805969, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 728982, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 673983, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 774208, + "title": "The benefits of working with others – fostering social capital in the farming sector", + "topic": "RUR-15-2017" +},{ + "projectID": 101000918, + "title": "Connecting consumers and producers in innovative agri-food supply chains", + "topic": "RUR-05-2020" +},{ + "projectID": 720005, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015" +},{ + "projectID": 729172, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 774021, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 697328, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 744574, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 745789, + "title": "Valorisation of lignin and other side-streams to increase efficiency of biorefineries and increase sustainability of the whole value chain", + "topic": "BBI-2016-D03" +},{ + "projectID": 717383, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 782663, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 673872, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 672722, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 663699, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 684848, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 778341, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 711486, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 818184, + "title": "New and emerging risks to plant health", + "topic": "SFS-05-2018-2019-2020" +},{ + "projectID": 700567, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 748961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 781608, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 651964, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 748042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752659, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746518, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746133, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752358, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753301, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752031, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753272, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752748, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 743528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 743562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749521, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746406, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749157, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748647, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752813, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750871, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 741333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 894189, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 749611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840034, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 894759, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 891839, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 101007071, + "title": "New test rig devices for accelerating ocean energy technology development", + "topic": "LC-SC3-RES-32-2020" +},{ + "projectID": 893509, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 883751, + "title": "European Pre-Commercial Procurement Programme for Wave Energy Research &Development", + "topic": "LC-SC3-JA-3-2019" +},{ + "projectID": 892984, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 957781, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 839134, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 847118, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 892214, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 894756, + "title": "Stimulating demand for sustainable energy skills in the construction sector", + "topic": "LC-SC3-EE-3-2019-2020" +},{ + "projectID": 890598, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 957175, + "title": "Towards highly energy efficient and decarbonised buildings", + "topic": "LC-SC3-B4E-1-2020" +},{ + "projectID": 101033733, + "title": "Stimulating demand for sustainable energy skills in the building sector", + "topic": "LC-SC3-B4E-2-2020" +},{ + "projectID": 101018403, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 894603, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 893945, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 892749, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 890147, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 857830, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 101033778, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-B4E-4-2020" +},{ + "projectID": 847147, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 847043, + "title": "New energy label driving and boosting innovation in products energy efficiency", + "topic": "LC-SC3-EE-15-2018" +},{ + "projectID": 890184, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 847100, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 818009, + "title": "Demonstrate significant cost reduction for Building Integrated PV (BIPV) solutions", + "topic": "LC-SC3-RES-6-2018" +},{ + "projectID": 955857, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 891775, + "title": "Stimulating demand for sustainable energy skills in the construction sector", + "topic": "LC-SC3-EE-3-2019-2020" +},{ + "projectID": 890473, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 101033781, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-B4E-4-2020" +},{ + "projectID": 101033916, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-B4E-4-2020" +},{ + "projectID": 773121, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 770869, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 773209, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771310, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 770964, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772744, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771136, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772464, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771997, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772022, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771237, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772827, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771005, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772606, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 770958, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771417, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771691, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772839, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772253, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772000, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771483, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771536, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772970, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 773062, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772051, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771862, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771168, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 769994, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 773023, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771620, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772339, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 785931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 790777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722325, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 892403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862258, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 693143, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 721798, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 832969, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 747245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787522, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101032413, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002357, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 796050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 737497, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 636725, + "title": "Support for the enhancement of the impact of EeB PPP projects", + "topic": "EeB-04-2014" +},{ + "projectID": 828888, + "title": "Blockchain and distributed ledger technologies for SMEs", + "topic": "INNOSUP-03-2018" +},{ + "projectID": 737596, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 871394, + "title": "ECSEL-2019-3-CSA-HealthE", + "topic": "ECSEL-2019-3-CSA-HealthE" +},{ + "projectID": 691942, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 727674, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 839896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844301, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 732112, + "title": "Boost synergies between artists, creative people and technologists", + "topic": "ICT-36-2016" +},{ + "projectID": 754046, + "title": "Cost reduction of new Nearly Zero-Energy buildings", + "topic": "EE-13-2016" +},{ + "projectID": 641012, + "title": "IPorta 2", + "topic": "INNOSUP-3-2014" +},{ + "projectID": 881574, + "title": "Intelligent asset management finalisation", + "topic": "S2R-CFM-IP3-01-2019" +},{ + "projectID": 839509, + "title": "Socio-economic research conceptualising and modelling energy efficiency and energy demand", + "topic": "LC-SC3-EE-14-2018-2019-2020" +},{ + "projectID": 665083, + "title": "Coordination and Support Activities", + "topic": "FETOPEN-2-2014" +},{ + "projectID": 640396, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 952169, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 762021, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 892235, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 885281, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 795292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 853850, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 844837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 857612, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101024439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 732319, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 793811, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023717, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958171, + "title": "Monitoring and safety of transport infrastructures (CSA)", + "topic": "NMBP-36-2020" +},{ + "projectID": 957816, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 740560, + "title": "Detection techniques on explosives: Countering an explosive threat, across the timeline of a plot", + "topic": "SEC-11-FCT-2016" +},{ + "projectID": 810995, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 858508, + "title": "Moving freight by Water: Sustainable Infrastructure and Innovative Vessels", + "topic": "MG-2-6-2019" +},{ + "projectID": 894356, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 680759, + "title": "Flexible production systems based on integrated tools for rapid reconfiguration of machinery and robots", + "topic": "FoF-11-2015" +},{ + "projectID": 833030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101032618, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789999, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 636906, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 795158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018841, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638596, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101031123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029157, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 662770, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 708228, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 746272, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101032425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 798912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 693343, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 688310, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 847715, + "title": "Encouraging innovation in nuclear safety for the benefit of European citizen", + "topic": "NFRP-2018-10" +},{ + "projectID": 800560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 768641, + "title": "Cross-cutting KETs for diagnostics at the point-of-care", + "topic": "NMBP-13-2017" +},{ + "projectID": 793715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669505, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 945858, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 793151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 701709, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 824586, + "title": "Innovative methods for teaching ethics and research integrity", + "topic": "SwafS-02-2018" +},{ + "projectID": 783222, + "title": "Optimised ATM Network Services: TBO", + "topic": "SESAR-ER3-03-2016" +},{ + "projectID": 842513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825182, + "title": "A multilingual Next Generation Internet", + "topic": "ICT-29-2018" +},{ + "projectID": 822106, + "title": "A digital 'plug and produce' online equipment platform for manufacturing (IA)", + "topic": "DT-NMBP-20-2018" +},{ + "projectID": 895569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 826172, + "title": "Semantic framework for multimodal transport services", + "topic": "S2R-OC-IP4-01-2018" +},{ + "projectID": 839412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 764466, + "title": "Support to the Vice-Chairs", + "topic": "IBA-ERC-VPRES-SUP-17" +},{ + "projectID": 786711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 800616, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833326, + "title": "Digital security, privacy, data protection and accountability in critical sectors", + "topic": "SU-DS05-2018-2019" +},{ + "projectID": 803239, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 890596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795302, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894255, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 844629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706475, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028099, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 811195, + "title": "Support to the Vice-Chairs", + "topic": "IBA-ERC-VPRES-SUP-18" +},{ + "projectID": 771859, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 793479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 753431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101022691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 680896, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 639068, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 699884, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796601, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702970, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 745922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 794434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 797209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101021669, + "title": "Pan-European networks of practitioners and other actors in the field of security", + "topic": "SU-GM01-2018-2019-2020" +},{ + "projectID": 771640, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101019344, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 894396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825521, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 742645, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101028853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 831286, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 839528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 752686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 674858, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 787886, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 741340, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 643619, + "title": "Boosting the Investment-Readiness of SMEs and Small Midcaps", + "topic": "BIR-1-2014" +},{ + "projectID": 101028232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 791908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 793707, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797668, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 776754, + "title": "Raw materials policy support actions", + "topic": "SC5-15-2016-2017" +},{ + "projectID": 857851, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 894938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 641931, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 956082, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 836792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101008082, + "title": "Insulation Monitoring for IT Grounded (Isolation Terra) Aerospace Electrical Systems", + "topic": "JTI-CS2-2020-CfP11-LPA-01-97" +},{ + "projectID": 838623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 818506, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101024951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 954021, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 841419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 956470, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 637212, + "title": "Support for the enhancement of the impact of FoF PPP projects", + "topic": "FoF-07-2014" +},{ + "projectID": 724608, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724909, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724939, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724910, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725706, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724951, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724471, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725850, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724204, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724602, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724431, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725955, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724908, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724703, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 726384, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725128, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725327, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724324, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724107, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724537, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725725, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724659, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 726153, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725924, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725355, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 726361, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724821, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724334, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725025, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725295, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725741, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 783206, + "title": "ATM Operations, Architecture, Performance and Validation", + "topic": "SESAR-ER3-06-2016" +},{ + "projectID": 761338, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 832636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724046, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 772293, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 803624, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802362, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101029792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019659, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101031224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 771127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 715386, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716823, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714658, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714430, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 676786, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 679744, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 679368, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 715222, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679086, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 679217, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716910, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715539, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716532, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715871, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715362, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 677117, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 677875, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 680220, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 678106, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 678307, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716082, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 678082, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 715182, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 677323, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 715683, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715788, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 678543, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 715631, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714907, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 680192, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714874, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714147, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715824, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714239, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679362, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 677774, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 678832, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 763747, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 714253, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101030742, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715874, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714759, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716079, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101030214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 884177, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 715714, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715016, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679001, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716846, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679633, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101018431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019006, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 800607, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 690962, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 840670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018890, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 734629, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101035798, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 823904, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 777794, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 823734, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101007755, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 824015, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 778219, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101007653, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 823934, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 823973, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 823866, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 691210, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 691178, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 872718, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 824047, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 689857, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 823786, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 823826, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 734485, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 780057, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 101004794, + "title": "To set up a digital accessibility observatory as a forum to take stock of market and technological developments, monitor progress in digital accessibility and provide opportunities for exchange of best practices", + "topic": "DT-TRANSFORMATIONS-23-2020" +},{ + "projectID": 894599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895895, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865364, + "title": "Demonstration and test of low-loss, high reliability, high speed, bearing-relief generators", + "topic": "JTI-CS2-2018-CfP09-SYS-03-20" +},{ + "projectID": 743458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 824544, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 787177, + "title": "Support to research organisations to implement gender equality plans", + "topic": "SwafS-03-2016-2017" +},{ + "projectID": 838282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863922, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 642025, + "title": "Facilitating transnational cooperation between NCPs in Societal Challenge 5", + "topic": "SC5-19a-2014" +},{ + "projectID": 831748, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of Energy: follow-up project", + "topic": "IBA-SC3-NCP-2018" +},{ + "projectID": 955739, + "title": "Industrial software codes for extreme scale computing environments and applications", + "topic": "EuroHPC-03-2019" +},{ + "projectID": 862850, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 780192, + "title": "Innovation procurement networks", + "topic": "ICT-33-2017" +},{ + "projectID": 831752, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of quality standards and horizontal issues: follow-up project", + "topic": "IBA-DEE-NCP-2018" +},{ + "projectID": 646713, + "title": "Network of National Contact Points", + "topic": "INFRASUPP-8-2014" +},{ + "projectID": 854109, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of Research Infrastructures: follow-up project", + "topic": "IBA-INFRA-NCP-2018" +},{ + "projectID": 633563, + "title": "National Contact Points for quality standards and horizontal issues", + "topic": "GARRI-8-2014" +},{ + "projectID": 695245, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693457, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695722, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693512, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 692452, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 692616, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694228, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694893, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695136, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694513, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694640, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695566, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695096, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694202, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693030, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 692789, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694248, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694509, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695710, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693045, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694120, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695714, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 650502, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 681240, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 696425, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 825677, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 825673, + "title": "Research on HIV, tuberculosis (TB) and/or hepatitis C (HCV) in patients with mono-, co-infections and/or comorbidities in the context of fostering collaboration with the Russian Federation", + "topic": "SC1-BHC-21-2018" +},{ + "projectID": 673705, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 683475, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 761595, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 673788, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 662657, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 717943, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 673077, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 672801, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 685063, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 809943, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 710834, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 856698, + "title": "Digital health and care services", + "topic": "SC1-DTH-10-2019-2020" +},{ + "projectID": 689909, + "title": "New sustainable exploration technologies and geomodels", + "topic": "SC5-11d-2015" +},{ + "projectID": 824219, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 723834, + "title": "Presidency events", + "topic": "NMBP-31-2016" +},{ + "projectID": 763138, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 731116, + "title": "Health", + "topic": "Health" +},{ + "projectID": 685106, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 769705, + "title": "Support for large scale uptake of Digital Innovation for Active and Healthy Ageing", + "topic": "SC1-HCO-17-2017" +},{ + "projectID": 691440, + "title": "Professionalization of open innovation management in SMEs", + "topic": "INNOSUP-7-2015" +},{ + "projectID": 646112, + "title": "Support for NCPs", + "topic": "NMP-39-2014" +},{ + "projectID": 730211, + "title": "Transformations to sustainability", + "topic": "SC5-28-2016" +},{ + "projectID": 848068, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 885205, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 748478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690876, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 792773, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 955352, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 826353, + "title": "Support to a Digital Health and Care Innovation initiative in the context of Digital Single Market strategy", + "topic": "SC1-HCC-05-2018" +},{ + "projectID": 756014, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 673934, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 853800, + "title": "Functional Ethionamide boosters: a novel combination for tuberculosis therapy", + "topic": "IMI2-2018-16-06" +},{ + "projectID": 815418, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 717286, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 640231, + "title": "Space exploration – Life support", + "topic": "COMPET-07-2014" +},{ + "projectID": 101004181, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 717287, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 101004213, + "title": "EGNSS applications for public authorities' pilot", + "topic": "SPACE-EGNSS-5-2020" +},{ + "projectID": 870385, + "title": "Access to space", + "topic": "SPACE-17-TEC-2019" +},{ + "projectID": 732432, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 101004174, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 870365, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 115850, + "title": "Manufacturing capability", + "topic": "IMI2-2014-02-02" +},{ + "projectID": 768434, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 664044, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 776026, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 870227, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 101004372, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 101004261, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 821801, + "title": "Generic space technologies", + "topic": "SPACE-11-TEC-2018" +},{ + "projectID": 870436, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 870370, + "title": "Space hubs (support to start-ups)", + "topic": "DT-SPACE-09-BIZ-2019" +},{ + "projectID": 745175, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 696568, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 710971, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 718642, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 641615, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 826157, + "title": "Digital health and care services – support for strategy and (early) adoption", + "topic": "SC1-HCC-04-2018" +},{ + "projectID": 666852, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 821890, + "title": "Access to space", + "topic": "SPACE-16-TEC-2018" +},{ + "projectID": 698308, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 673030, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 640210, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 641572, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 641529, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 641613, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 775151, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101004274, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 777167, + "title": "Personalised computer models and in-silico systems for well-being", + "topic": "SC1-PM-17-2017" +},{ + "projectID": 673939, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 663824, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 696802, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 821896, + "title": "Scientific instrumentation and technologies enabling space science and exploration", + "topic": "SPACE-20-SCI-2018" +},{ + "projectID": 821973, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 640387, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 730118, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 870506, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 684713, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 666758, + "title": "SME Instrument", + "topic": "Space-SME-2014-2" +},{ + "projectID": 776045, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 776405, + "title": "EGNSS professional applications", + "topic": "GALILEO-3-2017" +},{ + "projectID": 775990, + "title": "Grant to map the biomedical research projects funded by major funding organisations around the World", + "topic": "IBA-SC1-BIOMEDICAL-2017" +},{ + "projectID": 776258, + "title": "Technology transfer and business generators", + "topic": "COMPET-7-2017" +},{ + "projectID": 757038, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 684335, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 101004140, + "title": "SRC - In-space electrical propulsion and station keeping - Incremental technologies", + "topic": "SPACE-28-TEC-2020" +},{ + "projectID": 964418, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 874667, + "title": "Support for the functioning of the Global Research Collaboration for Infectious Disease Preparedness (GloPID-R)", + "topic": "SC1-HCO-15-2019" +},{ + "projectID": 683469, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 736508, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 643271, + "title": "ERA-NET: Systems medicine to address clinical needs", + "topic": "HCO-09-2014" +},{ + "projectID": 778253, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 697471, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 672680, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 729076, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 886532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 651007, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101004552, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 718244, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 777090, + "title": "Personalised computer models and in-silico systems for well-being", + "topic": "SC1-PM-17-2017" +},{ + "projectID": 857558, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 838444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945377, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 643850, + "title": "Joint programming: Co-ordination action for the joint programming initiative (JPI) 'more years better lives the challenges and opportunities of demographic change'", + "topic": "HCO-02-2014" +},{ + "projectID": 883345, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 641202, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 847587, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 870340, + "title": "Access to space", + "topic": "SPACE-17-TEC-2019" +},{ + "projectID": 822018, + "title": "Scientific instrumentation and technologies enabling space science and exploration", + "topic": "SPACE-20-SCI-2018" +},{ + "projectID": 811144, + "title": "Presidency event (conference): 'Europe's Transformation: Where People Matter' – Austria, November 2018", + "topic": "IBA-SC5-Presidency-2017" +},{ + "projectID": 101021349, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 737537, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 695169, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 798638, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 769025, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 814761, + "title": "Human Factors in Transport Safety", + "topic": "MG-2-1-2018" +},{ + "projectID": 751125, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 679787, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 713690, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 725978, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101034290, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034248, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 945352, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 847577, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034412, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 801342, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 101034170, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 945139, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 801538, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 801370, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 945363, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101034260, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 839821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 847639, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034403, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 847462, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 804724, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 713567, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 945332, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 945422, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 794545, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034266, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 754432, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 800924, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 945408, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101034324, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034440, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 801509, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 754489, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 754345, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 101034291, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 847439, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034379, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 801481, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 101034349, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 945207, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 754354, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 883818, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101034259, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101024993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101034288, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 945043, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101034277, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 847581, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 847402, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034263, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034270, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 847693, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 847517, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 945478, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 945168, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 945231, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101034383, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 810218, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 897841, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101019024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101034253, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034371, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 861852, + "title": "New and emerging risks to plant health", + "topic": "SFS-05-2018-2019-2020" +},{ + "projectID": 899987, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 818413, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 801505, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 754535, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 945298, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 847476, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034255, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034261, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101034321, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 801474, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 801110, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 847635, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 754045, + "title": "Overcoming market barriers and promoting deep renovation of buildings", + "topic": "EE-11-2016-2017" +},{ + "projectID": 101034297, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 945413, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 671524, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 730828, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 870628, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 101023075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 804029, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 742247, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 771776, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 844655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 963923, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101000972, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101018682, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 891577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 664621, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 715730, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 803111, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 803147, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 702607, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 836343, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 741322, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 797715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 745662, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 825299, + "title": "A multilingual Next Generation Internet", + "topic": "ICT-29-2018" +},{ + "projectID": 870451, + "title": "Access to space", + "topic": "SPACE-17-TEC-2019" +},{ + "projectID": 820751, + "title": "Digital solutions for water: linking the physical and digital world for water solutions", + "topic": "SC5-11-2018" +},{ + "projectID": 715049, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 753858, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677497, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 866386, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 737574, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 726371, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 692739, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 678254, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 637709, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 892230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884266, + "title": "Low carbon industrial production using CCUS", + "topic": "LC-SC3-NZE-5-2019-2020" +},{ + "projectID": 695527, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 799150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727598, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 838616, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 654444, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 794575, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 870403, + "title": "Advanced research in Near Earth Objects (NEOs) and new payload technologies for planetary defence", + "topic": "SU-SPACE-23-SEC-2019" +},{ + "projectID": 101022188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702213, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 727793, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 101006468, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 899302, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 633243, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 101016926, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 676201, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 688448, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 716155, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 724560, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 867424, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 724994, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 665992, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 665850, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 665874, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 666003, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 665884, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 681507, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681353, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682815, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681607, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 683133, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681893, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682779, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682540, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682241, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682002, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681352, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682848, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681601, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 683197, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682734, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681798, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682077, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681707, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 683194, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682387, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682467, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681510, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 742349, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 671262, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 692645, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 665860, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 101006411, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 690850, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 694745, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 703271, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101022942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 769192, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 823969, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 843363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799041, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 889385, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 864298, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 749815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 956779, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 749423, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825122, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 702138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 752387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 882450, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 776276, + "title": "Scientific data exploitation", + "topic": "COMPET-4-2017" +},{ + "projectID": 893382, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 726169, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 871336, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 846449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963928, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101018098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840879, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 723241, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101025355, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 692925, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 730989, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 870444, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 101001474, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 773228, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 759425, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759557, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757480, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759257, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757448, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757365, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758984, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757296, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759294, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757961, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758145, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759782, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758015, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757333, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757731, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758732, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759320, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757299, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758403, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759262, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757459, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757858, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757683, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758815, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758056, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759366, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759079, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759432, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759733, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758605, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759546, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757957, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757698, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757295, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758855, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 760081, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759649, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757978, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758638, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757710, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758462, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759346, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758974, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 726032, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 819171, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 757210, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 885746, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 843473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 856688, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 840591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694596, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 757589, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 797286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 773202, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 758385, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 872427, + "title": "The gender perspective of science, technology and innovation (STI) in dialogue with third countries", + "topic": "SwafS-12-2019" +},{ + "projectID": 759702, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 845612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 732339, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 821263, + "title": "Obstruction detection Sensor for Modular surveillance active Trajectory check improvement", + "topic": "JTI-CS2-2017-CfP07-SYS-01-09" +},{ + "projectID": 794837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692259, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101030536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795289, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101001095, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 896746, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 823937, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 871130, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 839535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 869993, + "title": "Efficient integrated downstream processes (IA)", + "topic": "CE-SPIRE-04-2019" +},{ + "projectID": 798384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 714472, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 795681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 800610, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702688, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 874986, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101019380, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 715982, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101026088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 742141, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 703372, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 965014, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 790491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 805256, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 794958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021687, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 643921, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 715872, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 804480, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101002644, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 892837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 730041, + "title": "Scientific Instrumentation", + "topic": "COMPET-5-2016" +},{ + "projectID": 682778, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 772242, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 742608, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 803721, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 794925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101033019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758473, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 766007, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101023801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 862471, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101022471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694819, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 741874, + "title": "ERA-NET Cofund – Promoting Gender equality in H2020 and the ERA", + "topic": "SwafS-02-2016" +},{ + "projectID": 759194, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 886024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788077, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 822670, + "title": "Curation of digital assets and advanced digitisation", + "topic": "DT-TRANSFORMATIONS-12-2018-2020" +},{ + "projectID": 101018181, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101007770, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 964524, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 665482, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 834252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 805098, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 725773, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 864550, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 963967, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 716931, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 752743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 678157, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101002207, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 742095, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 705518, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724690, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 870793, + "title": "The societal value of culture and the impact of cultural policies in Europe", + "topic": "TRANSFORMATIONS-08-2019" +},{ + "projectID": 802699, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 757912, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 758620, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 787304, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 794467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841210, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715300, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 851053, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851293, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851241, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852173, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 759482, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 952317, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 725142, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 709358, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700665, + "title": "The role of ICT in Critical Infrastructure Protection", + "topic": "DS-03-2015" +},{ + "projectID": 101018897, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 852069, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851466, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851890, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852286, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850604, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851437, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850934, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851161, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850979, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850936, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 853211, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851653, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 848861, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 849911, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851666, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 841054, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 852373, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852172, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852787, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852334, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851701, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850953, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850571, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851080, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 853514, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851990, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851318, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851188, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850859, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851329, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852570, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851891, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850996, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 847433, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850713, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852869, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852814, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 853539, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 752452, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 639802, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 670787, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 887867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794206, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021262, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 749561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 842796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681460, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 701891, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839538, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 808543, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 744895, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 101026406, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 796778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 733174, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 847567, + "title": "Implementation research for maternal and child health", + "topic": "SC1-BHC-19-2019" +},{ + "projectID": 825812, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 735067, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 825046, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 824997, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 775471, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 782660, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 965134, + "title": "Pre-commercial procurement (PCP) for integrated care solutions", + "topic": "SC1-BHC-20A-2020" +},{ + "projectID": 744842, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 733266, + "title": "Valorisation of FP7 Health and H2020 SC1 research results", + "topic": "SC1-HCO-01-2016" +},{ + "projectID": 791464, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 647383, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 761940, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 648001, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648521, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647954, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648115, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646714, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647490, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648960, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647467, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648842, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646592, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648558, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647384, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648630, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646657, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646928, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647839, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646849, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648841, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647995, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648132, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647939, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647356, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646809, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648498, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648329, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647208, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647390, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647725, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 648274, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647209, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 646644, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 727313, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 882340, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 658285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657347, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654895, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656089, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655857, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658574, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658005, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657510, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656782, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661033, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660952, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658110, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656319, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654795, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658332, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658330, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658174, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661472, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 661315, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658437, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656794, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656821, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 660053, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657474, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659648, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661561, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 660954, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654923, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 659434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 655609, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658761, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660021, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661398, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660147, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659725, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657949, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661327, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653667, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658812, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660448, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660343, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 658875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656148, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656441, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659773, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661092, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660113, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661322, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659847, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660245, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 657007, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656997, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655694, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655143, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661232, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661501, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654981, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658425, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660417, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101032279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661342, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 655965, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655954, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101000801, + "title": "Defossilising agriculture – solutions and pathways for fossil-energy-free farming", + "topic": "LC-FNR-06-2020" +},{ + "projectID": 655429, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656082, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659520, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 841432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659121, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 635885, + "title": "Seamless air mobility", + "topic": "MG-1.3-2014" +},{ + "projectID": 770548, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 657050, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657033, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655905, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656012, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659684, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 757279, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 658265, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655942, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657332, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659700, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656896, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658363, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659466, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661594, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657681, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 701724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 658252, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657176, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 658277, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 759526, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 658573, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660061, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654808, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 895305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656463, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655417, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658494, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660629, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724460, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 793147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 659232, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 659106, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660524, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818349, + "title": "Demonstrate highly performant renewable technologies for combined heat and power (CHP) generation and their integration in the EU's energy system", + "topic": "LC-SC3-RES-12-2018" +},{ + "projectID": 101001957, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 655866, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101034309, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 661210, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659765, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749022, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661396, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655710, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 655661, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 657211, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661015, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661502, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660212, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654909, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657283, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 643607, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 661555, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655274, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 667078, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 689476, + "title": "Self-management of health and disease and patient empowerment supported by ICT", + "topic": "PHC-27-2015" +},{ + "projectID": 788047, + "title": "New constellations of Changing Institutions and Actors", + "topic": "SwafS-05-2017" +},{ + "projectID": 633780, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 741672, + "title": "Support to research organisations to implement gender equality plans", + "topic": "SwafS-03-2016-2017" +},{ + "projectID": 818977, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101001205, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 862044, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 955345, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 746159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 633367, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 873082, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101004887, + "title": "Culture beyond borders – Facilitating innovation and research cooperation between European museums and heritage sites", + "topic": "TRANSFORMATIONS-19-2020" +},{ + "projectID": 647550, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 797945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 861930, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 793615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754422, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 823947, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 824153, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 852317, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101026762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026462, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 883356, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 708200, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724326, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101030525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893771, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820670, + "title": "Energy and resource flexibility in highly energy intensive industries (IA 50%)", + "topic": "CE-SPIRE-03-2018" +},{ + "projectID": 952252, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 793920, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 955816, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 751729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 794981, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694409, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 694254, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 645690, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 656491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 892669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 648176, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 899298, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 785809, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 637424, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 646758, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101025264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 952357, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 833549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820767, + "title": "Effective Industrial Human-Robot Collaboration (RIA)", + "topic": "DT-FOF-02-2018" +},{ + "projectID": 798901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101000573, + "title": "Connecting consumers and producers in innovative agri-food supply chains", + "topic": "RUR-05-2020" +},{ + "projectID": 101029867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844184, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 821394, + "title": "International network to promote cultural heritage innovation and diplomacy", + "topic": "SC5-19-2018" +},{ + "projectID": 101025667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955518, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 956369, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 692065, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 714591, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716181, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 813789, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 843100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948891, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 691152, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101003442, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 949087, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948254, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950056, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948913, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947702, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949906, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949852, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949707, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950319, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947856, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950048, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949557, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948878, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948679, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947713, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948217, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947634, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947821, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950293, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948424, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947988, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949686, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950178, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948959, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949699, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949173, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949944, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950349, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949465, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949660, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948665, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949572, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950635, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949451, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949628, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948186, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949279, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 946012, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949041, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949330, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948371, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949742, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948671, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948181, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948716, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948885, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948066, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948609, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947761, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948358, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948748, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947684, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949319, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948356, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948982, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 818066, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817934, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819004, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819459, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817988, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819702, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819242, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817577, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818425, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819043, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819416, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819536, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817540, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819040, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819933, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818098, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 815559, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819358, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819630, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817652, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819757, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819093, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 814804, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818691, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819394, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818299, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818940, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819931, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818353, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819368, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819496, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818633, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819478, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 820124, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819227, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818210, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 640554, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 955337, + "title": "Enhancing coordination between Member States' actions in the area of infrastructure research with a particular focus on biodiversity and ameliorating environmental impacts and full automated infrastructure upgrade and maintenance", + "topic": "MG-2-10-2020" +},{ + "projectID": 101002592, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 860243, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 740923, + "title": "Cyber Security for SMEs, local public administration and Individuals", + "topic": "DS-02-2016" +},{ + "projectID": 101024627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834225, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833438, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833078, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833694, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 832874, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834782, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833632, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834148, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834044, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833423, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 835068, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833925, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833973, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834134, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834006, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 835243, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 832940, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833895, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 835105, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 714609, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 870217, + "title": "EURAXESS Armenia start-up", + "topic": "IBA-SWAFS-EURAXESS-AM-2019" +},{ + "projectID": 851146, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 707968, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101038083, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 792678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 734046, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 897481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 641211, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 844761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701771, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101038059, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 951745, + "title": "Stimulating the innovation potential of SMEs", + "topic": "EuroHPC-05-2019" +},{ + "projectID": 681482, + "title": "Capitalising the full potential of online collaboration for SME innovation", + "topic": "INNOSUP-6-2015" +},{ + "projectID": 873010, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 792849, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 673526, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 815590, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851678, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 947921, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 795890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793485, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 801586, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 828853, + "title": "Blockchain and distributed ledger technologies for SMEs", + "topic": "INNOSUP-03-2018" +},{ + "projectID": 655226, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 748026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101016848, + "title": "International cooperation in smart living environments for ageing people", + "topic": "SC1-DTH-04-2020" +},{ + "projectID": 702916, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 692590, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 833422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 770826, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 830847, + "title": "CSA for Lighthouse Initiative Mobility.E", + "topic": "ECSEL-2018-4-CSA-MobilityE" +},{ + "projectID": 101021641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870296, + "title": "Awareness Raising and capacity building", + "topic": "SPACE-EGNSS-4-2019" +},{ + "projectID": 885332, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878362, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731986, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 813542, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 877055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 747824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 738759, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 895713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748753, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101038052, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 823163, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 756226, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 870358, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 735832, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 947695, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 841952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027340, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786083, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 694368, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101033368, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025327, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 806309, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 841315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804259, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 891566, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 671662, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 851733, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 853394, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101019613, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 798082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952360, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 101029280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 830036, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 965277, + "title": "Pre-commercial procurement (PCP) for integrated care solutions", + "topic": "SC1-BHC-20A-2020" +},{ + "projectID": 798091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824630, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 898687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 859246, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656010, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 890770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 700380, + "title": "Communication technologies and interoperability topic 1: interoperable next generation of broadband radio communication system for public safety and security", + "topic": "DRS-18-2015" +},{ + "projectID": 677232, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 739592, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 654155, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 754446, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 862820, + "title": "Sustainable wood value chains", + "topic": "LC-RUR-11-2019-2020" +},{ + "projectID": 101024555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833464, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 836082, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785813, + "title": "Conference on the opening up of research infrastructures to new regions in the context of their long-term sustainability", + "topic": "IBA-INFRA-SUSTAINABILTY-2017" +},{ + "projectID": 101007851, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101030185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823677, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 864287, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101009497, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 853667, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 754056, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 795557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 726104, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101001792, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 723094, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 854248, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 829668, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826385, + "title": "Passenger service platform specifications for an enhanced multi-modal transport eco-system including Mobility as a Service (MaaS)", + "topic": "S2R-CFM-IP4-01-2018" +},{ + "projectID": 101025947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025056, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 787829, + "title": "Support to research organisations to implement gender equality plans", + "topic": "SwafS-03-2016-2017" +},{ + "projectID": 101004545, + "title": "Culture beyond borders – Facilitating innovation and research cooperation between European museums and heritage sites", + "topic": "TRANSFORMATIONS-19-2020" +},{ + "projectID": 823952, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 746838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001675, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 789111, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 664573, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 777991, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 786773, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 881826, + "title": "S2R System Architecture and Conceptual Data Model", + "topic": "S2R-CFM-IPX-CCA-01-2019" +},{ + "projectID": 850717, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 829729, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021098, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 874478, + "title": "PJ.14 W2 Integrated CNSS", + "topic": "SESAR-IR-VLD-WAVE2-12-2019" +},{ + "projectID": 657251, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 893673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025436, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786910, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 948070, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101023808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716651, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 828487, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101030079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001897, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101023293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 715031, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 864828, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 950692, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 846674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637844, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 782457, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 726400, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 758903, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 644962, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 746223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 770935, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 832848, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 795707, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101016673, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 101026819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957252, + "title": "Next Generation Media", + "topic": "ICT-44-2020" +},{ + "projectID": 793661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 787991, + "title": "Engaging industry – Champions for RRI in Industrial Sectors", + "topic": "SwafS-06-2017" +},{ + "projectID": 758853, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 895958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837854, + "title": "Research, innovation and educational capacities for energy transition", + "topic": "LC-SC3-CC-5-2018" +},{ + "projectID": 846244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001534, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 788781, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 690211, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 874866, + "title": "Towards a next generation influenza vaccine to protect citizens worldwide – an EU-India collaboration", + "topic": "SC1-BHC-32-2019" +},{ + "projectID": 652114, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 748749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 857418, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 765111, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 775616, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 825432, + "title": "Global Alliance for Chronic Diseases (GACD) - Scaling-up of evidence-based health interventions at population level for the prevention and management of hypertension and/or diabetes", + "topic": "SC1-BHC-16-2018" +},{ + "projectID": 866510, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 830559, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673562, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 825698, + "title": "Global Alliance for Chronic Diseases (GACD) - Scaling-up of evidence-based health interventions at population level for the prevention and management of hypertension and/or diabetes", + "topic": "SC1-BHC-16-2018" +},{ + "projectID": 729891, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 825823, + "title": "Global Alliance for Chronic Diseases (GACD) - Scaling-up of evidence-based health interventions at population level for the prevention and management of hypertension and/or diabetes", + "topic": "SC1-BHC-16-2018" +},{ + "projectID": 744986, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 661289, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 899612, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 719217, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 876589, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 856317, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737559, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 672974, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 783774, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 841758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 777691, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 834513, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 738614, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 657440, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669609, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101032030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816081, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001239, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 703862, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101034449, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 642197, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101026394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020976, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 666971, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 733554, + "title": "Centres/Networks of European research and innovation", + "topic": "ENG-GLOBALLY-09-2016" +},{ + "projectID": 101005985, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 633161, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 813263, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 861874, + "title": "Workplace innovation uptake by SMEs", + "topic": "INNOSUP-04-2019" +},{ + "projectID": 699644, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 853663, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 946233, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 970893, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 664639, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 892825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 847568, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101034352, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 777491, + "title": "Innovating SMEs - segmentation along lifecycle and sectors (analytical research activity)", + "topic": "INNOSUP-07-2017" +},{ + "projectID": 680942, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 871795, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 644847, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 837515, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808013, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101006396, + "title": "Innovators of the future: bridging the gender gap", + "topic": "SwafS-26-2020" +},{ + "projectID": 636853, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 680943, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 761412, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 886772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 872618, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 879953, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 765452, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101002291, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 644610, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 959871, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 685001, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 727812, + "title": "Awareness-raising and capacity-building for business angels and other early-stage investors", + "topic": "CBBA-01-2016" +},{ + "projectID": 959548, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 870283, + "title": "Awareness Raising and capacity building", + "topic": "SPACE-EGNSS-4-2019" +},{ + "projectID": 671522, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 715280, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 841764, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101034319, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 806037, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 792738, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654732, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 644023, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 867556, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870480, + "title": "Space hubs (support to start-ups)", + "topic": "DT-SPACE-09-BIZ-2019" +},{ + "projectID": 713803, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 730826, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 101006212, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 758005, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 739686, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 742472, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 723890, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101023443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787361, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 952690, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 868887, + "title": "Transforming historic urban areas and/or cultural landscapes into hubs of entrepreneurship and social and cultural integration", + "topic": "SC5-20-2019" +},{ + "projectID": 101024540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834934, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101025473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825904, + "title": "Strategic collaboration in health research and innovation between EU and China", + "topic": "SC1-HCO-11-2018" +},{ + "projectID": 874694, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 730002, + "title": "SRC - In-Space electrical propulsion and station keeping - Incremental Technologies", + "topic": "COMPET-3-2016-a" +},{ + "projectID": 730020, + "title": "SRC - In-Space electrical propulsion and station keeping - Incremental Technologies", + "topic": "COMPET-3-2016-a" +},{ + "projectID": 640376, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2014" +},{ + "projectID": 791235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772479, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 891197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 831810, + "title": "Experimental characterization and optimization of the RH and LH Engine intakes configuration of the next generation Tilt Rotor", + "topic": "JTI-CS2-2018-CfP08-FRC-01-23" +},{ + "projectID": 670846, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 817597, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 793224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804334, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 837602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 678765, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 802192, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 659151, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019515, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 741501, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 677147, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 805495, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802787, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 842071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655209, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 834172, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 660724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 890847, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724469, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 715861, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 726659, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 647570, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101001179, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101005071, + "title": "Fostering transnational cooperation between national support structures (e.g. National Contact Points): ensuring a transition between Horizon 2020 and Horizon Europe", + "topic": "NSUP-1-2020" +},{ + "projectID": 740972, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 637334, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 707252, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 808670, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 798726, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665589, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 637618, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 791735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945714, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101025415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 759967, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 814558, + "title": "Osteoarticular tissues regeneration (RIA)", + "topic": "NMBP-22-2018" +},{ + "projectID": 793900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797764, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 789580, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802107, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101001159, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 853063, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 771507, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 725967, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101020009, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 850818, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 820843, + "title": "Gearbox bearing design & testing", + "topic": "JTI-CS2-2017-CfP07-ENG-01-25" +},{ + "projectID": 770936, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 866267, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 832833, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 715836, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 770127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 656422, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 853348, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 715923, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 948528, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101024314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724638, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 640241, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2014" +},{ + "projectID": 757239, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 838706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743029, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 949583, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 799201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 768679, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 744150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 804176, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 897828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896517, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101001124, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 656898, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681207, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 898715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693779, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 750885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772408, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 659311, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101018680, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 842006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 676632, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101000504, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 703762, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 637027, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 751904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819864, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818856, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 713927, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 796004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 803084, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 844075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 784802, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 836192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725513, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 651088, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 865803, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 682426, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101027092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835087, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 842498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 773091, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 966757, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 657309, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 771849, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 799182, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 743959, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 964800, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 797639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 771486, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 851697, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 714688, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 658769, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 951519, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 894231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819734, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101018645, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101025799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707946, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705026, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 752292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 957566, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101022640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734168, + "title": "CNS", + "topic": "SESAR.IR-VLD.Wave1-17-2015" +},{ + "projectID": 654860, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 679083, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 750814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101019501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730149, + "title": "Maturing satellite communication technologies", + "topic": "COMPET-2-2016" +},{ + "projectID": 870542, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 101004349, + "title": "SRC - In-space electrical propulsion and station keeping - Incremental technologies", + "topic": "SPACE-28-TEC-2020" +},{ + "projectID": 874465, + "title": "PJ.07 W2 Optimised airspace users operations", + "topic": "SESAR-IR-VLD-WAVE2-06-2019" +},{ + "projectID": 101004208, + "title": "Space traffic management", + "topic": "SU-SPACE-21-SEC-2020" +},{ + "projectID": 101004206, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 840531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655396, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 882257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 800280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694559, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101022502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637533, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 694105, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101031720, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949836, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 648718, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 741084, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 659468, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656205, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 865067, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101019419, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 792387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 950248, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 654889, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 890454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896858, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 804066, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 796802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836253, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772204, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 839880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715594, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 779792, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 841663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101021502, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 704709, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 880432, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881444, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656378, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 694227, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101029996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640163, + "title": "Transnational and international cooperation among NCPs", + "topic": "COMPET-11-2014" +},{ + "projectID": 897142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802701, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 789017, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 855677, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 857691, + "title": "Cooperation among NCPs", + "topic": "IBA-SPACE-NCP-2018" +},{ + "projectID": 872002, + "title": "Electric propulsion", + "topic": "IBA-SPACE-SRC-ELPROP-2019" +},{ + "projectID": 748941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 640199, + "title": "In-Space electrical propulsion and station keeping", + "topic": "COMPET-03-2014" +},{ + "projectID": 874567, + "title": "Space robotics", + "topic": "IBA-SPACE-SRC-SPROB-2019" +},{ + "projectID": 778349, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 803937, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 641474, + "title": "IPR helpdesk", + "topic": "INNOSUP-2-2014" +},{ + "projectID": 672157, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 658591, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 832488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 682895, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 758498, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101032186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882375, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 804208, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101002355, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 676621, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 882793, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 679937, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 687567, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 771770, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 882588, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 719476, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 895679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744726, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 725094, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 662736, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 659144, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101010563, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 796925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 775249, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 878182, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666206, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 739835, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 966759, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 839165, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754795, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 838056, + "title": "Develop bio-based packaging products that are biodegradable/ compostable and/or recyclable", + "topic": "BBI.2018.SO3.R10" +},{ + "projectID": 745762, + "title": "Advanced biomaterials for smart food packaging", + "topic": "BBI-2016-R05" +},{ + "projectID": 757088, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 828902, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101009114, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 768543, + "title": "Carbon dioxide utilisation to produce added value chemicals", + "topic": "SPIRE-08-2017" +},{ + "projectID": 801806, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 773852, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 662606, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 101007712, + "title": "Investigation and modelling of hydrogen effusion in electrochemically plated ultra-high-strength-steels used for landing gear structures", + "topic": "JTI-CS2-2020-CFP11-SYS-03-25" +},{ + "projectID": 650946, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 712738, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 832274, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751898, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 708674, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 641725, + "title": "Development of novel materials and systems for OLED lighting", + "topic": "ICT-29-2014" +},{ + "projectID": 833798, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826657, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022370, + "title": "Improve the sustainability of coatings", + "topic": "BBI-2020-SO3-R5" +},{ + "projectID": 877167, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826846, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780041, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101024253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 875528, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 746058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 953128, + "title": "Biological scaffolds for tissue regeneration and repair (RIA)", + "topic": "NMBP-21-2020" +},{ + "projectID": 827948, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 653828, + "title": "Towards seamless mobility addressing fragmentation in ITS deployment in Europe", + "topic": "MG-7.2b-2014" +},{ + "projectID": 673972, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 682676, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 947749, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 805486, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 714637, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 844138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 843418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803079, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101006598, + "title": "Setting up a common European research and innovation strategy for the future of road transport", + "topic": "LC-GV-09-2020" +},{ + "projectID": 101028626, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657751, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 636237, + "title": "I²I – Intelligent Infrastructure", + "topic": "MG-2.1-2014" +},{ + "projectID": 646623, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 640130, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 769130, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 724320, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 706896, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 898754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716762, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 804228, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 744112, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101002585, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 674896, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 706434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 952480, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 892401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660171, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 725698, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 724629, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 893615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819446, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 849740, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 893483, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796707, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 669947, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101023317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882173, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 952088, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 865354, + "title": "Flexible and Automated Manufacturing of wound components for high reliability", + "topic": "JTI-CS2-2018-CfP09-SYS-03-19" +},{ + "projectID": 793677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840010, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 896390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 852084, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 888163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655489, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 826422, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 853049, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 776350, + "title": "Competitiveness in Earth observation mission technologies", + "topic": "COMPET-2-2017" +},{ + "projectID": 882429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 737639, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 863487, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101001764, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 692691, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 770933, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 870415, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 774030, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 875577, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 657595, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 876335, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652821, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1b-2014" +},{ + "projectID": 900012, + "title": "Ageing phenomena of components and structures and operational issues", + "topic": "NFRP-2019-2020-01" +},{ + "projectID": 811515, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952395, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 839848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 673617, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 794646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 808686, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 880495, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732420, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 694101, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 825189, + "title": "EU-US collaboration on NGI", + "topic": "ICT-31-2018-2019" +},{ + "projectID": 868035, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 757791, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 772743, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101030375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 779196, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 809522, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 875671, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 671747, + "title": "SPREADING", + "topic": "SPREADING" +},{ + "projectID": 787002, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 644385, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 872076, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 793317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 790575, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 882556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714285, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 683064, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 719451, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 666570, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 695561, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 847652, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 782814, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101026198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 849165, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 744235, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 816493, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876306, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740282, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 792476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 678921, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 727644, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 891888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 825354, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 654606, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 966791, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 743585, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 651407, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 883297, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 896824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 732013, + "title": "Thin, Organic and Large Area Electronics", + "topic": "ICT-02-2016" +},{ + "projectID": 869929, + "title": "Integration of energy smart materials in non-residential buildings (IA)", + "topic": "LC-EEB-01-2019" +},{ + "projectID": 696776, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 825109, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 781749, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 882520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 653188, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833741, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654971, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 865844, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 771642, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 714788, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 894674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 945878, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 833240, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 734322, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 659114, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 860881, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 714536, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 852642, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101002690, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 707543, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724777, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 659322, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 894103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 833280, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 884719, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 750627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702243, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 648723, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 892933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714625, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 672851, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 723988, + "title": "RISK FINANCE", + "topic": "RISK FINANCE" +},{ + "projectID": 948780, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 745891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657701, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660220, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648084, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 963934, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 639314, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 878286, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815598, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101000406, + "title": "Sustainable wood value chains", + "topic": "LC-RUR-11-2019-2020" +},{ + "projectID": 856065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 762147, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 799481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731760, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 776151, + "title": "High speed data chain", + "topic": "COMPET-3-2017" +},{ + "projectID": 702178, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866533, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 758032, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 798617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890141, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 804701, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 889635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802553, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101032391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724836, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 893960, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845065, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833504, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 801872, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 716321, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 864491, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101001355, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 703112, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885504, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 843236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659668, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692299, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101001121, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101026724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716974, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 844246, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899986, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 101033271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786949, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 891127, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101020423, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 796327, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003023, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 648489, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 775332, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 866186, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 637840, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 804824, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 658183, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895790, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 757557, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 788381, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101038054, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 728369, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 857796, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 952455, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 655594, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 841827, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 955750, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 839074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 847583, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 895807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948426, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101019147, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 680880, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 724687, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 796700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 771872, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 952432, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101002516, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 665959, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 799025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 948126, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948588, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 819374, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 892542, + "title": "Safety and Resilience", + "topic": "SESAR-ER4-06-2019" +},{ + "projectID": 857572, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 749598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 681742, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 823867, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 803183, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 759229, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 797635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 853343, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 681162, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 852741, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 637510, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 864138, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 713998, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 637995, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 646649, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 716424, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 670874, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 853404, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 838661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724298, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 770924, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101025032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 801867, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 945655, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101020503, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 895698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647133, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101031840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002733, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 846294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 678520, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 835152, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 795807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 676970, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716117, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 949143, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 865468, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 741420, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 716083, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101030925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693227, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 785571, + "title": "Contactless measurement system for real time monitoring of proprotor flapping angle", + "topic": "JTI-CS2-2017-CFP06-FRC-01-14" +},{ + "projectID": 851956, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 665421, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 674274, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014" +},{ + "projectID": 101020088, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 816900, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875031, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 727220, + "title": "Scientific Instrumentation", + "topic": "COMPET-5-2016" +},{ + "projectID": 101028788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844618, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 946887, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807688, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 870522, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 728649, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 643920, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 838359, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 713486, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101025756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 687973, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 755412, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 640492, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 663815, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 696376, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 697822, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 655194, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887498, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 669046, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 838585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704734, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 750600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677650, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 805749, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 646858, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 878207, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 951281, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 720531, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 101029822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 868694, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645262, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 658974, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 783939, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 776355, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 656869, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 776278, + "title": "Competitiveness in Earth observation mission technologies", + "topic": "COMPET-2-2017" +},{ + "projectID": 825854, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 683008, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 960251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025085, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 769606, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 890514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 812982, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 816853, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730195, + "title": "Remote Tower for Multiple Airports", + "topic": "SESAR.IR-VLD.Wave1-08-2015" +},{ + "projectID": 778078, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 650018, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 896403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025065, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841109, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 807844, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 735709, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 836153, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 679190, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 864461, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 663688, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 857934, + "title": "Grant to the Coalition for Epidemic Preparedness Innovations (CEPI)", + "topic": "SGA-SC1-CEPI-2019" +},{ + "projectID": 783667, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101026451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716458, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 949963, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 718000, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 101031940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024099, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 687785, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 863346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735942, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 841063, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 703787, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 746014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707643, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101003395, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 815837, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 778412, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 965715, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 850836, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 636069, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 662932, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 779306, + "title": "Methods research for improved health economic evaluation", + "topic": "SC1-PM-20-2017" +},{ + "projectID": 719731, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 758705, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 847845, + "title": "Towards risk-based screening strategies for non-communicable diseases", + "topic": "SC1-BHC-30-2019" +},{ + "projectID": 886338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 872735, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 784514, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 710759, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 842812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 852957, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101030677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 666102, + "title": "Health", + "topic": "Health" +},{ + "projectID": 786247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 778277, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 825173, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 854730, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 749083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 792494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 829300, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680088, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101032267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 874556, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 679254, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 825931, + "title": "Research on HIV, tuberculosis (TB) and/or hepatitis C (HCV) in patients with mono-, co-infections and/or comorbidities in the context of fostering collaboration with the Russian Federation", + "topic": "SC1-BHC-21-2018" +},{ + "projectID": 717927, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 101034345, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101026687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 648131, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 747110, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 666085, + "title": "Health", + "topic": "Health" +},{ + "projectID": 845774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772345, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 832513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003376, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 812386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660718, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 727695, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101027302, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 674909, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 835717, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883582, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 782978, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 101034228, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 660402, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 892232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101006407, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 652868, + "title": "Crisis management topic 4: Feasibility study for strengthening capacity-building for health and security protection in case of large-scale pandemics – Phase I Demo", + "topic": "DRS-04-2014" +},{ + "projectID": 841925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 667387, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 101016070, + "title": "Repurposing of manufacturing for vital medical supplies and equipment.", + "topic": "SC1-PHE-CORONAVIRUS-2020-2A" +},{ + "projectID": 751461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749351, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 745936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 819511, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 842613, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 790027, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 646176, + "title": "Widening materials models", + "topic": "NMP-20-2014" +},{ + "projectID": 814100, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 948922, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 896348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018445, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641822, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 849533, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854689, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651226, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 706908, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 788618, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 893158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101021081, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 647197, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 958837, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 812092, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949120, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 807105, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 843186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 955263, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 951875, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 949710, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852205, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 724557, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 721631, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 771015, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 692162, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 896543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955424, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 785964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669190, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 722929, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 842443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 955377, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 101016460, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 657539, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 872561, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 779813, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 848411, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 898704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 957823, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 958445, + "title": "Industrialisation of building envelope kits for the renovation market (IA)", + "topic": "LC-EEB-04-2020" +},{ + "projectID": 751376, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734770, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101029140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033307, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 865570, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 639402, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 770047, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101027639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705326, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 749192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101020445, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 895322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029727, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 822638, + "title": "Research for inclusive growth: addressing the socioeconomic effects of technological transformations", + "topic": "TRANSFORMATIONS-01-2018" +},{ + "projectID": 101034431, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 869931, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 810961, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 870548, + "title": "The impact of technological transformations on children and youth", + "topic": "DT-TRANSFORMATIONS-07-2019" +},{ + "projectID": 856954, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 757873, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 814517, + "title": "Open Innovation Test Beds for Characterisation (IA)", + "topic": "DT-NMBP-07-2018" +},{ + "projectID": 853385, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 814494, + "title": "Open Innovation Test Beds for Characterisation (IA)", + "topic": "DT-NMBP-07-2018" +},{ + "projectID": 692188, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 674797, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 966625, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101006420, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 713669, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 794815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724544, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 765355, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 833223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851613, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 640982, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 748430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 771074, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 730439, + "title": "RISK FINANCE", + "topic": "RISK FINANCE" +},{ + "projectID": 870336, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 703018, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 774973, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 850636, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 844795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656954, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 693623, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 824573, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 645740, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 833029, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 860383, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 802349, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 780656, + "title": "Tools for smart digital content in the creative industries", + "topic": "ICT-20-2017" +},{ + "projectID": 101019470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101017762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864519, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 704364, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678120, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 792809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 708124, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 702491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 665055, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 679253, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 643072, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 893462, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 853988, + "title": "Emerging translational safety technologies and tools for interrogating human immuno-biology", + "topic": "IMI2-2018-15-04" +},{ + "projectID": 674758, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 640243, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2014" +},{ + "projectID": 773268, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 647274, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 831852, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 877768, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694679, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 799022, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101019872, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 883552, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 846614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656347, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 878727, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 740704, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 799810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815568, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 790461, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 875604, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 677582, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 827599, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742646, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 681373, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 759272, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 653412, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658197, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 789788, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 851435, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 817235, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 898308, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 663865, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 867406, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681231, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 670747, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 644483, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 684171, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 701770, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 722677, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 704790, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 680132, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 817124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697004, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 673504, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 866237, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 787544, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 682999, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 869055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680275, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 899858, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 679418, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 828376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875268, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 770951, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 673233, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 888124, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 868108, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687548, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 751561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655928, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 844391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 634361, + "title": "Native and alien pests in agriculture and forestry", + "topic": "SFS-03a-2014" +},{ + "projectID": 753696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 835704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864637, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 854915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 765415, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 814168, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 647783, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101028978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957547, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 898090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681012, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101029427, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 829698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767415, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 887661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 737592, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 694992, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 726799, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 101026742, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655677, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101011013, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 707771, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 947886, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 872770, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 707700, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 849793, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950050, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 790211, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 640116, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 798455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702888, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 855988, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828207, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 729360, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 748829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 851550, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 683861, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 633999, + "title": "EU-China cooperation on IPM in agriculture", + "topic": "SFS-03b-2014" +},{ + "projectID": 867649, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 809140, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 717542, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 748167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 728382, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 838525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101007783, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 967357, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683435, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 836353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 852222, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 647916, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 816023, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727922, + "title": "Understanding host-pathogen-environment interactions", + "topic": "SFS-14-2016" +},{ + "projectID": 840866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637801, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 656398, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 772418, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 695655, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 670424, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 707998, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770769, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 949735, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 818170, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 949850, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 701258, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 786462, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 708181, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701591, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701088, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 862291, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 692022, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 708255, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866570, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850963, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101023041, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716718, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 833440, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 777718, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 777123, + "title": "In-silico trials for developing and assessing biomedical products", + "topic": "SC1-PM-16-2017" +},{ + "projectID": 747278, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 834370, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 659003, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 735796, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101019416, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 855664, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774792, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 745677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 780548, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 817194, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 638992, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 644283, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 639573, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 725459, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 757743, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 637304, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 648963, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101002511, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101019564, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 873534, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691829, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 732407, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 894468, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706102, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790188, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 959049, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952594, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 711475, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 841729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 696601, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 757198, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 634086, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 795224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 779071, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 708374, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 729781, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101024135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844950, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758306, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 798582, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 720736, + "title": "Bio-based functional molecules for coating and surface treatment", + "topic": "BBI.VC1.R3-2015" +},{ + "projectID": 797597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802780, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101024420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 780540, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 790025, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 747438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838002, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 867430, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 799882, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 695482, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 811729, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021166, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 947496, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659237, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 638857, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 644026, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 101022257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 674102, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 799801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 818615, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 659774, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870004, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 887915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738842, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 845122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 886287, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899428, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 896211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 882794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693144, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 727722, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 821876, + "title": "Generic space technologies", + "topic": "SPACE-11-TEC-2018" +},{ + "projectID": 728378, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 792245, + "title": "Reducing the cost of PV electricity", + "topic": "LCE-10-2017" +},{ + "projectID": 839237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 817991, + "title": "Demonstrate significant cost reduction for Building Integrated PV (BIPV) solutions", + "topic": "LC-SC3-RES-6-2018" +},{ + "projectID": 886953, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 826013, + "title": "Disruptive innovation in clean energy technologies", + "topic": "LC-SC3-RES-2-2018" +},{ + "projectID": 816590, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698688, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 678024, + "title": "Sustainable food chains through public policies: the cases of the EU quality policy and of public sector food procurement", + "topic": "SFS-20-2015" +},{ + "projectID": 808777, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 658391, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875870, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773344, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 705020, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715058, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 745396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 672936, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 957464, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 738580, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 858498, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774274, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 807995, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 867992, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793340, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 832800, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 702927, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 877041, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796366, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 828251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778472, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 770145, + "title": "Shifting paradigms: Exploring the dynamics of individual preferences, behaviours and lifestyles influencing travel and mobility choices", + "topic": "MG-8-5-2017" +},{ + "projectID": 716183, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 704298, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 773939, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 811820, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866147, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832190, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725026, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 729573, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 855049, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874126, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683612, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 650458, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 868599, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002867, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 774966, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 836601, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817010, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849692, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 716657, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 761792, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 808720, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 737548, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 866703, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 947307, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 787390, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 692448, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 876553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733542, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 957149, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 858896, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762407, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 848927, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 754615, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 672138, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 672058, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 633281, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 643262, + "title": "Technologies combining big data, internet of things in the cloud", + "topic": "EUJ-1-2014" +},{ + "projectID": 966677, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 837512, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952509, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 835697, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006382, + "title": "Bottom-up approach to build SwafS knowledge base", + "topic": "SwafS-31-2020" +},{ + "projectID": 783045, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101026073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 777707, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 743837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 672930, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 778154, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 664605, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 754521, + "title": "Concerted Action EED: support to Member States and participating countries for the implementation of the Energy Efficiency Directive", + "topic": "IBA-Energy-EED-2016-2017" +},{ + "projectID": 872249, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719069, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 850997, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 750030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 818669, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 702952, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659251, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101028657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895202, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 886651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 849713, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003293, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 793027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793858, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 885479, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 837418, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755161, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 657107, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 862595, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 861910, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 789121, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 793296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 692195, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 891689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956374, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 892153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 968850, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825377, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 840712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 831458, + "title": "Centre Of Excellence – Remote Decentralised Clinical Trials", + "topic": "IMI2-2018-14-04" +},{ + "projectID": 653066, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 840064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839626, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665619, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 887367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 725258, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 660648, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101024736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681813, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 635919, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 704004, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845041, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 739200, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 817494, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 895239, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002772, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 722951, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 690836, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 713704, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 768930, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 852925, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 682332, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 655039, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659168, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 676861, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 707954, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802901, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 715475, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 836434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840588, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945334, + "title": "Improving patient access, understanding and adherence to healthcare information: an integrated digital health information project", + "topic": "IMI2-2019-18-03" +},{ + "projectID": 682723, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 964370, + "title": "Pre-commercial procurement (PCP) for integrated care solutions", + "topic": "SC1-BHC-20A-2020" +},{ + "projectID": 674459, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 703238, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706081, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 816495, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663704, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 653750, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 744341, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 666795, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 658666, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 713664, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 885146, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 733108, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 728239, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 778811, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 816925, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886720, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739148, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 797329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836885, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736051, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 891504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777072, + "title": "In-silico trials for developing and assessing biomedical products", + "topic": "SC1-PM-16-2017" +},{ + "projectID": 868226, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811765, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774831, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 735261, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 963914, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 654260, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 115966, + "title": "Patient perspective elicitation on benefits and risks of medicinal products, from development through the entire life cycle, to inform the decision-making process by regulators and Health Technology Assessment bodie", + "topic": "IMI2-2015-05-01" +},{ + "projectID": 894998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 808021, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 698752, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 736566, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 965598, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101016503, + "title": "Accelerating the uptake of computer simulations for testing medicines and medical devices", + "topic": "SC1-DTH-06-2020" +},{ + "projectID": 657425, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 789539, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 887764, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780765, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 955756, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 727218, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 773732, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 808887, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 850896, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 672723, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 654862, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 671846, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 766181, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 710410, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 737590, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 783868, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 743640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 715536, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 755094, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 685218, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 721098, + "title": "Biomaterials for diagnosis and treatment of demyelination disorders of the Central Nervous System", + "topic": "NMBP-09-2016" +},{ + "projectID": 731377, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 843951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 823731, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 887750, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957011, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 945993, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 656841, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692185, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 952148, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 822535, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 805498, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 952327, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 788204, + "title": "European Community of Practice to support institutional change", + "topic": "SwafS-08-2017" +},{ + "projectID": 850593, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 873832, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 966830, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 807804, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 836962, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775547, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 844728, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862344, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 955931, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 664101, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 853609, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 647047, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 882909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 733543, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 665937, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2014" +},{ + "projectID": 771468, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 658085, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 789083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 767556, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 718746, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 704960, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 838675, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 670798, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 746669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 883701, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004157, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 647473, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 700001, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 879961, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664032, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 835852, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 642423, + "title": "Dissemination and exploitation, ICT, knowledge, gaps, research needs, etc", + "topic": "WATER-4a-2014" +},{ + "projectID": 711160, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 948601, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 726545, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 656327, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659624, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 743993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843753, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656917, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655394, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 666490, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014" +},{ + "projectID": 637010, + "title": "New ideas for Earth-relevant space applications", + "topic": "EO-1-2014" +},{ + "projectID": 713641, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 719712, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 772751, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 882688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023803, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 633230, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 750682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101029512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 854975, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865077, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 790163, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 827736, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 947763, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 847776, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 864552, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 897042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714977, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 708006, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802371, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 860173, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 844492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851871, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 898059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716011, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 751267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007815, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101027836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 729206, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 649810, + "title": "Construction skills", + "topic": "EE-04-2014" +},{ + "projectID": 852816, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 800594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 671055, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 849052, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733209, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 779334, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 864309, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 659425, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 741531, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 818087, + "title": "Effective Industrial Human-Robot Collaboration (RIA)", + "topic": "DT-FOF-02-2018" +},{ + "projectID": 968776, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004151, + "title": "SRC - Space robotics technologies", + "topic": "SPACE-27-TEC-2020" +},{ + "projectID": 101029670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 663776, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 644103, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 101001797, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 762574, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 891084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 671999, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 776356, + "title": "Technology transfer and business generators", + "topic": "COMPET-7-2017" +},{ + "projectID": 710568, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 759796, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 640026, + "title": "Space Robotics Technologies", + "topic": "COMPET-04-2014" +},{ + "projectID": 731968, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 692427, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 896937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 673090, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 101016007, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 737530, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 654724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659189, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 665696, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 685245, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 754450, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 101018395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788918, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 771432, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 751781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 871899, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 771083, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 801346, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 798321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 637090, + "title": "Support for the enhancement of the impact of FoF PPP projects", + "topic": "FoF-07-2014" +},{ + "projectID": 643691, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 849938, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 734977, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101000439, + "title": "Reducing food losses and waste along the agri-food value chain", + "topic": "RUR-07-2020" +},{ + "projectID": 734698, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 955326, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 778234, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 860329, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101038067, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 955329, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 893394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 823907, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 862034, + "title": "Measurement of rotor vibration using tip-timing for high speed booster and evaluation of associated uncertainties", + "topic": "JTI-CS2-2018-CfP09-ENG-01-39" +},{ + "projectID": 857487, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 769392, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 686371, + "title": "High Performance Turbocharger", + "topic": "JTI-CS2-2014-CFP01-ENG-04-02" +},{ + "projectID": 811157, + "title": "Arctic Science Ministerial – Germany, October 2018", + "topic": "IBA-SC5-ARCTIC-2018" +},{ + "projectID": 824350, + "title": "Building Open Science platforms in transport research", + "topic": "MG-4-2-2018" +},{ + "projectID": 854520, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738123, + "title": "Functional top coat for natural laminar flow", + "topic": "JTI-CS2-2016-CFP03-AIR-01-15" +},{ + "projectID": 870470, + "title": "SRC – In-Space electrical propulsion and station keeping", + "topic": "SPACE-13-TEC-2019" +},{ + "projectID": 713795, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 649293, + "title": "Empowering stakeholders to assist public authorities in the definition and implementation of sustainable energy policies and measures", + "topic": "EE-09-2014" +},{ + "projectID": 838534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 687015, + "title": "Aero-acoustic experimental characterization of a CROR (Contra Rotating Open Rotor) engine WT model with core flow in propellers architecture", + "topic": "JTI-CS2-2014-CFP01-AIR-01-04" +},{ + "projectID": 871967, + "title": "Security and resilience for collaborative manufacturing environments", + "topic": "ICT-08-2019" +},{ + "projectID": 101019522, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 663746, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 738029, + "title": "Very high loaded planet bearings enabling technologies", + "topic": "JTI-CS2-2016-CFP03-ENG-01-06" +},{ + "projectID": 739653, + "title": "Presidency Conference: Spreading Excellence and Crossing the Innovation Divide", + "topic": "IBA-SEWP-INNOVATION-2016" +},{ + "projectID": 847080, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 101031071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 865863, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 749427, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815622, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 800049, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649436, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 825460, + "title": "A multilingual Next Generation Internet", + "topic": "ICT-29-2018" +},{ + "projectID": 703187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 870324, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767533, + "title": "Integrated approach to process optimisation for raw material resources efficiency, excluding recovery technologies of waste streams", + "topic": "SPIRE-07-2017" +},{ + "projectID": 651335, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 877238, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673878, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 949785, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 837139, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776469, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 697203, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 899886, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 705444, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 773577, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 886285, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 637503, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 733723, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 716678, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 831991, + "title": "Development and testing of innovative Cr free anodic layers removal solution", + "topic": "JTI-CS2-2018-CfP08-SYS-03-18" +},{ + "projectID": 723441, + "title": "Highly efficient insulation materials with improved properties", + "topic": "EEB-01-2016" +},{ + "projectID": 825018, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 763129, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101031243, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 743563, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 958208, + "title": "Alternative mineral resources for high volume production (IA)", + "topic": "CE-SPIRE-09-2020" +},{ + "projectID": 665778, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 696683, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 727565, + "title": "ERA-NET Cofund: Public-Public Partnerships in the bioeconomy", + "topic": "SFS-19-2016-2017" +},{ + "projectID": 727641, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 845147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101032657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 753743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 772209, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 851765, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 766884, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-03-2017" +},{ + "projectID": 872922, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648455, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 662712, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 841627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 672199, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 722095, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 877522, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001235, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 853736, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 829741, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 829620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729291, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 703254, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 714312, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 693606, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 646840, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 654019, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 769478, + "title": "Culture, integration and European public space", + "topic": "CULT-COOP-10-2017" +},{ + "projectID": 853508, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 952223, + "title": "International Cooperation on Quantum Technologies", + "topic": "FETFLAG-06-2020" +},{ + "projectID": 731200, + "title": "Joint Actions towards the demonstration and validation of innovative energy solutions", + "topic": "LCE-34-2016" +},{ + "projectID": 945339, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101001626, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 705437, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 676061, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 639052, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 841388, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 856619, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101032653, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 953629, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701006, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 797123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 810701, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 824441, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 894006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 831062, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 691185, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101038086, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 748305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 894637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 690388, + "title": "Raw materials research and innovation coordination", + "topic": "SC5-13d-2015" +},{ + "projectID": 742671, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101026314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 755816, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 861849, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101028296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 696549, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 690650, + "title": "Strengthening the knowledge and capacities of local authorities", + "topic": "MG-5.4-2015" +},{ + "projectID": 756301, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101019319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751510, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 835759, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 802823, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 725561, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 690588, + "title": "Common communication and navigation platforms for pan-European logistics applications", + "topic": "MG-6.3-2015" +},{ + "projectID": 742983, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 709674, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 663724, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 832862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836175, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 633292, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 793978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 641222, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 873631, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 857446, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 786398, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 824330, + "title": "TSO – DSO – Consumer: Large-scale demonstrations of innovative grid services through demand response, storage and small-scale (RES) generation", + "topic": "LC-SC3-ES-5-2018-2020" +},{ + "projectID": 797944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952128, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 673729, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 886084, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864004, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 802279, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 786479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 859051, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 734328, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 653879, + "title": "Critical Infrastructure Protection topic 6: Improving the aviation security chain", + "topic": "DRS-16-2014" +},{ + "projectID": 882232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657017, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 728259, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 672467, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 777926, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 638946, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 732929, + "title": "IoT Horizontal activities", + "topic": "IoT-02-2016" +},{ + "projectID": 883075, + "title": "Human factors, and social, societal, and organisational aspects of border and external security", + "topic": "SU-BES01-2018-2019-2020" +},{ + "projectID": 648071, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 720887, + "title": "Advanced materials solutions and architectures for high efficiency solar energy harvesting", + "topic": "NMBP-17-2016" +},{ + "projectID": 807771, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 964518, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 892142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 864850, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 710295, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 847468, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 966570, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 851196, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 658349, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692178, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 896731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840052, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 680176, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 866356, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666866, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 841259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 815929, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723192, + "title": "Support for National Contact Points", + "topic": "NMBP-32-2016" +},{ + "projectID": 682110, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 896311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 713445, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 823995, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 789119, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 664526, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 672506, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 771528, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101033496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705616, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 723634, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 852952, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 889256, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 801512, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 686298, + "title": "Presidency events", + "topic": "NMP-38-2015" +},{ + "projectID": 795838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656208, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 822932, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880793, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653839, + "title": "Law enforcement capabilities topic 1: Develop novel monitoring systems and miniaturised sensors that improve Law Enforcement Agencies' evidence- gathering abilities", + "topic": "FCT-05-2014" +},{ + "projectID": 825176, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 844147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949910, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 894690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 726360, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 970958, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 647596, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 752102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 643796, + "title": "eHealth interoperability", + "topic": "PHC-34-2014" +},{ + "projectID": 819141, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 768090, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 646867, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 804639, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 850868, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 654723, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 774717, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 691768, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 966685, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 843872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 747599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 858112, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101029896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730270, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 827087, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881226, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 840011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 697271, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 731848, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 850875, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 957286, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 816313, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101024880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 684019, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101020330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 775162, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 752117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866018, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 787180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 653184, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 643791, + "title": "Development of novel materials and systems for OLED lighting", + "topic": "ICT-29-2014" +},{ + "projectID": 946629, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 806162, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 843453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681292, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 818616, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 824939, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 677465, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 678177, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 645672, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 715579, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 789016, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 805074, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101024386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693039, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 845835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 846688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841665, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794160, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772649, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 691414, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 705701, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 825435, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 752923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101000831, + "title": "Enzymes for more environment-friendly consumer products", + "topic": "FNR-16-2020" +},{ + "projectID": 841433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899838, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 841199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 830061, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821883, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 886454, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862016, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 713707, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 688878, + "title": "Pre-commercial procurement open to all areas of public interest requiring new ICT solutions", + "topic": "ICT-36-2015" +},{ + "projectID": 101026382, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 809065, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 965265, + "title": "New approaches for clinical management and prevention of resistant bacterial infections in high prevalence settings", + "topic": "SC1-BHC-34-2020" +},{ + "projectID": 838710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637647, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 887722, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714233, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101024524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 847504, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 101030960, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 859114, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815289, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 893366, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 835901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101000797, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 857251, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 861323, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101001311, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 844345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029842, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 857065, + "title": "Digital Platforms/Pilots Horizontal Activities", + "topic": "DT-ICT-13-2019" +},{ + "projectID": 835355, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963895, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101004603, + "title": "Citizen-centric public services in local and regional administrations", + "topic": "DT-GOVERNANCE-22-2020" +},{ + "projectID": 653640, + "title": "Energy", + "topic": "Energy" +},{ + "projectID": 963864, + "title": "ERA-NET to support the Joint Programming Initiative on Antimicrobial resistance (JPIAMR)", + "topic": "SC1-HCO-07-2020" +},{ + "projectID": 702604, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101007254, + "title": "ECSEL-IA", + "topic": "ECSEL-2020-1-IA" +},{ + "projectID": 763671, + "title": "Drone information management", + "topic": "RPAS-02" +},{ + "projectID": 960995, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733018, + "title": "Master Plan Maintenance", + "topic": "SESAR.IR-VLD.Wave1-02-2015" +},{ + "projectID": 815001, + "title": "Driver behaviour and acceptance of connected, cooperative and automated transport", + "topic": "MG-3-3-2018" +},{ + "projectID": 101034857, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 898893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892174, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699387, + "title": "Communication,Navigation and Surveillance (CNS)", + "topic": "Sesar-08-2015" +},{ + "projectID": 777112, + "title": "IoT Pilots", + "topic": "EUB-02-2017" +},{ + "projectID": 875183, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 650513, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 893864, + "title": "U-space", + "topic": "SESAR-ER4-31-2019" +},{ + "projectID": 808869, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 751062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 832161, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 872085, + "title": "PJ.01 W2 Enhanced Arrival and Departures", + "topic": "SESAR-IR-VLD-WAVE2-08-2019" +},{ + "projectID": 880480, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 830344, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899888, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 770999, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 827563, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 800180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669029, + "title": "Added value products from underutilised agricultural resources", + "topic": "BBI.VC3.F1" +},{ + "projectID": 101021851, + "title": "Demonstration of applied solutions to enhance border and external security", + "topic": "SU-BES03-2018-2019-2020" +},{ + "projectID": 699924, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790742, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 876759, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 951375, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 783198, + "title": "Enabling Aviation Infrastructure: CNS for General Aviation", + "topic": "SESAR-ER3-04-2016" +},{ + "projectID": 861696, + "title": "Innovative applications of drones for ensuring safety in transport", + "topic": "MG-2-8-2019" +},{ + "projectID": 832876, + "title": "Pre-normative research and demonstration for disaster-resilient societies", + "topic": "SU-DRS03-2018-2019-2020" +},{ + "projectID": 819104, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101007134, + "title": "Towards sustainable urban air mobility", + "topic": "MG-3-6-2020" +},{ + "projectID": 871743, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 887195, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 789030, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 844946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891397, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 704724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 677542, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 872614, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 824985, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 756006, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 740224, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 877227, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 661679, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007917, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 661167, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001320, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 683987, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 101032337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949595, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 771599, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 745808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 875594, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 698260, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 834952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693907, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 675415, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101004211, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 897225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660911, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742719, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101022928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 785911, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101018762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787836, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 805041, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 761424, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101030257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 771170, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 745862, + "title": "Scaling up in the ocean energy sector to arrays", + "topic": "LCE-15-2016" +},{ + "projectID": 640926, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 741751, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101004130, + "title": "SRC - Space robotics technologies", + "topic": "SPACE-27-TEC-2020" +},{ + "projectID": 949843, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 835002, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 634144, + "title": "Developing and comparing new models for safe and efficient, prevention oriented health and care systems", + "topic": "PHC-23-2014" +},{ + "projectID": 667526, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 772200, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 747943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 760037, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 786494, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 846304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101020068, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 737569, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 660743, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 865227, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 771004, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 750833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 699745, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 777786, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 871018, + "title": "The impact of technological transformations on children and youth", + "topic": "DT-TRANSFORMATIONS-07-2019" +},{ + "projectID": 654034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 649261, + "title": "Resilient and sustainable economic and monetary union in Europe", + "topic": "EURO-1-2014" +},{ + "projectID": 101024446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 791985, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 680995, + "title": "Global Alliance for Chronic Diseases. Prevention and treatment of lung diseases", + "topic": "HCO-06-2015" +},{ + "projectID": 698727, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 738928, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 763853, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 101019185, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 811592, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675228, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 831969, + "title": "Certification by Simulation for Rotorcraft Flight Aspects (CSRFA)", + "topic": "JTI-CS2-2018-CfP08-FRC-01-19" +},{ + "projectID": 767173, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101001065, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 794507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677927, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 894499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 704382, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 825731, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 956123, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 748200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734430, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101020369, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 813839, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 796013, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101007979, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 792178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 753815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642477, + "title": "Mining of small and complex deposits and alternative mining", + "topic": "SC5-11a-2014" +},{ + "projectID": 752656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852970, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 889930, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 678652, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 639305, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 817762, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 853507, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 897722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771891, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 843152, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694544, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 853291, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 837793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 805252, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101018839, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 674978, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101027463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899732, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 776900, + "title": "Airport and ATS Level Assessment (Rotorcraft)", + "topic": "JTI-CS2-2016-CFP05-TE2-01-02" +},{ + "projectID": 721176, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 728437, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 854468, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 795222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 710279, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 848137, + "title": "Mental health in the workplace", + "topic": "SC1-BHC-22-2019" +},{ + "projectID": 772249, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 693141, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 699356, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 653789, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1b-2014" +},{ + "projectID": 805189, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 887959, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 715933, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 840035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 734941, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 882215, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688217, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 711094, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 101007453, + "title": "Airport and ATS Level Assessment for Rotorcraft", + "topic": "JTI-CS2-2020-CfP11-TE2-01-13" +},{ + "projectID": 957027, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 847551, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 802145, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 851885, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 874470, + "title": "PJ.05 W2 Digital technologies for Tower", + "topic": "SESAR-IR-VLD-WAVE2-05-2019" +},{ + "projectID": 842118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 653337, + "title": "Communication technologies and interoperability topic 2: Next generation emergency services", + "topic": "DRS-19-2014" +},{ + "projectID": 895937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657355, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 866698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874997, + "title": "Refueling Protocols for Medium and Heavy-Duty Vehicles", + "topic": "FCH-04-2-2019" +},{ + "projectID": 783230, + "title": "Safe integration of drones", + "topic": "SESAR-VLD1-10-2016" +},{ + "projectID": 874983, + "title": "Hydrogen admixtures in natural gas domestic and commercial end uses", + "topic": "FCH-04-3-2019" +},{ + "projectID": 744006, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 759102, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 723630, + "title": "Networking and sharing best experiences in using regional clusters strategies with a focus on supporting innovation in the NMBP thematic area.", + "topic": "NMBP-33-2016" +},{ + "projectID": 681296, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 821996, + "title": "SRC – Space robotics technologies", + "topic": "SPACE-12-TEC-2018" +},{ + "projectID": 793007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 874889, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 633249, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 771003, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 826343, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 676042, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 833673, + "title": "Cybersecurity preparedness - cyber range, simulation and economics", + "topic": "SU-DS01-2018" +},{ + "projectID": 783163, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 862289, + "title": "Smart materials, systems and structures for energy harvesting (RIA)", + "topic": "LC-NMBP-32-2019" +},{ + "projectID": 651848, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 955376, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 644055, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 101036101, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 674990, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 645471, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 730035, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 816516, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691818, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 650989, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 651054, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 953775, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 643159, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 826697, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730068, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 840331, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 893017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 673802, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 844529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 697454, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 719488, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 817279, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826948, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007005, + "title": "Improved Production and Maintenance Processes in Shipyards", + "topic": "MG-3-7-2020" +},{ + "projectID": 661629, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 674718, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 953636, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 964464, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 659461, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 872260, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 818342, + "title": "Demonstrate significant cost reduction for Building Integrated PV (BIPV) solutions", + "topic": "LC-SC3-RES-6-2018" +},{ + "projectID": 774500, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 869898, + "title": "Integration of energy smart materials in non-residential buildings (IA)", + "topic": "LC-EEB-01-2019" +},{ + "projectID": 730150, + "title": "Downstream applications", + "topic": "EO-1-2016" +},{ + "projectID": 851961, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 753903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724106, + "title": "Roadmap, new business models, awareness raising, support and incentives for the roll-out of ITS", + "topic": "MG-6.3-2016" +},{ + "projectID": 864042, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 970619, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829735, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687613, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 793962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 856943, + "title": "Digital Platforms/Pilots Horizontal Activities", + "topic": "DT-ICT-13-2019" +},{ + "projectID": 724501, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 840491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 766792, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 851896, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 739254, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 815526, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877324, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808697, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 809276, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 734141, + "title": "CWP - HMI", + "topic": "SESAR.IR-VLD.Wave1-19-2015" +},{ + "projectID": 858898, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726072, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 871237, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 837298, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742074, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 805668, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 877580, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828110, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 844431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 823871, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101011217, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 101033236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 829615, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850932, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 895890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 644869, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 650655, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 833936, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789049, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 761145, + "title": "Business models and industrial strategies supporting novel supply chains for innovative product-services", + "topic": "NMBP-22-2017" +},{ + "projectID": 849131, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854590, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885787, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 791086, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 815751, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879407, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 648831, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 729186, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 963987, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 726168, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 749973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638035, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101004374, + "title": "Space hubs (support to start-ups)", + "topic": "DT-SPACE-26-BIZ-2020" +},{ + "projectID": 786054, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 862559, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 713721, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 843554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 813086, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 807448, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 881193, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773657, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 793316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 817421, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 805065, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 826042, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 807460, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 760353, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 873397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 766492, + "title": "Mobilising the European nano-biomedical ecosystem", + "topic": "NMBP-16-2017" +},{ + "projectID": 691799, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 798033, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 718125, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 864276, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 666257, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 851374, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 880041, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804858, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 691919, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 691925, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 101036457, + "title": "Innovative land-based and offshore renewable energy technologies and their integration into the energy system", + "topic": "LC-GD-2-1-2020" +},{ + "projectID": 848747, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808597, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 959151, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702300, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 781868, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 829644, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811473, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851245, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 729363, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 818767, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 844384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690946, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 736224, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 643167, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 736399, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 654634, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 101009363, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 675659, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 971145, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 860737, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 969297, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 857768, + "title": "Demonstration of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-17-2019" +},{ + "projectID": 684469, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 698491, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 816706, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868435, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 869276, + "title": "Raw materials policy support actions for the circular economy", + "topic": "CE-SC5-08-2018-2019-2020" +},{ + "projectID": 825881, + "title": "Strengthening regulatory sciences and supporting regulatory scientific advice", + "topic": "SC1-HCO-05-2018" +},{ + "projectID": 101018916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 871143, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 837975, + "title": "Advanced CO2 capture technologies", + "topic": "LC-SC3-NZE-1-2018" +},{ + "projectID": 843594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 764760, + "title": "Geological storage pilots", + "topic": "LCE-30-2017" +},{ + "projectID": 852993, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 875512, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 840804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028616, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 858247, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 672586, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 678511, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 843470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 736123, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 836308, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854943, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763096, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101021311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 777832, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 854754, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853222, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 853797, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 950592, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 640557, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 836169, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706115, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832150, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952110, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 747676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 774994, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 794979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727494, + "title": "Support for international research on animal health", + "topic": "SFS-12-2016" +},{ + "projectID": 843845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 694045, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 116019, + "title": "Establishing impact of RSV infection, resultant disease and public health approach to reducing the consequences", + "topic": "IMI2-2015-06-02" +},{ + "projectID": 666010, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 848201, + "title": "Implementation research for maternal and child health", + "topic": "SC1-BHC-19-2019" +},{ + "projectID": 817536, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 820755, + "title": "The value of diagnostics to combat antimicrobial resistance by optimising antibiotic use", + "topic": "IMI2-2017-13-03" +},{ + "projectID": 675033, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 956003, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 682421, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 813979, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101036115, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 745839, + "title": "Biopolymers with advanced functionalities for high performance applications", + "topic": "BBI-2016-R07" +},{ + "projectID": 805195, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101036048, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 760090, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 864576, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 813144, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 688520, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 954509, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 638804, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 737475, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 645342, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 764935, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 820911, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 854361, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 701131, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 740943, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 660150, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 951444, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 637601, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 833389, + "title": "Cybersecurity preparedness - cyber range, simulation and economics", + "topic": "SU-DS01-2018" +},{ + "projectID": 887438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 872907, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101007229, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 798083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 823805, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 806588, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 773901, + "title": "Socio-eco-economics – socio-economics in ecological approaches", + "topic": "SFS-29-2017" +},{ + "projectID": 800604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657342, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 662786, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 747363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101009067, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 958396, + "title": "Preserving fresh water: recycling industrial waters industry", + "topic": "CE-SPIRE-07-2020" +},{ + "projectID": 677139, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 842429, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 658266, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 691478, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 771367, + "title": "Organic breeding – Increasing the competitiveness of the organic breeding and farming sectors", + "topic": "SFS-07-2016-2017" +},{ + "projectID": 716732, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 950220, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 693600, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 890943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 743494, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 735687, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 967019, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004282, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 835571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870023, + "title": "Efficient integrated downstream processes (IA)", + "topic": "CE-SPIRE-04-2019" +},{ + "projectID": 646612, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 887856, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880336, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776309, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 873185, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 778035, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 644334, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 871319, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 871479, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 734922, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 839481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681120, + "title": "Global Alliance for Chronic Diseases. Prevention and treatment of lung diseases", + "topic": "HCO-06-2015" +},{ + "projectID": 824990, + "title": "Robotics - Digital Innovation Hubs (DIH)", + "topic": "DT-ICT-02-2018" +},{ + "projectID": 669220, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 897890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 733356, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 101000365, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 101030652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101000467, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 680997, + "title": "Global Alliance for Chronic Diseases. Prevention and treatment of lung diseases", + "topic": "HCO-06-2015" +},{ + "projectID": 101004687, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 870708, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 115842, + "title": "Vaccine development Phase I, II, and III", + "topic": "IMI2-2014-02-01" +},{ + "projectID": 101025781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101034339, + "title": "Restricted Call to maximise impact of IMI2 JU objectives and scientific priorities", + "topic": "IMI2-2020-22-01" +},{ + "projectID": 115847, + "title": "Deployment and compliance of vaccination regimens", + "topic": "IMI2-2014-02-04" +},{ + "projectID": 101025559, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 675370, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 733373, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 116068, + "title": "Ebola and other filoviral haemorrhagic fevers (Ebola+) programme: future outbreaks", + "topic": "IMI2-2015-08-01" +},{ + "projectID": 966826, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 640190, + "title": "Science in context: sample curation facility and scientific exploitation of data from Mars missions", + "topic": "COMPET-08-2014" +},{ + "projectID": 725034, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 832117, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 810630, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 827367, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825511, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836144, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 633320, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 869357, + "title": "Negative emissions and land-use based mitigation assessment", + "topic": "LC-CLA-02-2019" +},{ + "projectID": 824666, + "title": "Encouraging the re-use of research data generated by publically funded research projects", + "topic": "SwafS-04-2018" +},{ + "projectID": 700002, + "title": "Maritime Border Security topic 4: Detection of low flying aircraft at near shore air space", + "topic": "BES-04-2015" +},{ + "projectID": 860956, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 826347, + "title": "Analysis for Moving Block and implementation of Virtual Coupling concept", + "topic": "S2R-OC-IP2-01-2018" +},{ + "projectID": 699247, + "title": "Separation Management and Separation Standards", + "topic": "Sesar-07-2015" +},{ + "projectID": 847386, + "title": "Mental health in the workplace", + "topic": "SC1-BHC-22-2019" +},{ + "projectID": 876689, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853853, + "title": "Pre-standardisation mechanisms for security", + "topic": "IBA-SC7-PSM-2018" +},{ + "projectID": 768264, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101017274, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 799711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021853, + "title": "Pan-European networks of practitioners and other actors in the field of security", + "topic": "SU-GM01-2018-2019-2020" +},{ + "projectID": 101003012, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 799609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877264, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653460, + "title": "Crisis management topic 7: Crises and disaster resilience – operationalizing resilience concepts", + "topic": "DRS-07-2014" +},{ + "projectID": 706671, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704936, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101029634, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 954920, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 797929, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 837040, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 827933, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688619, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 640747, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 867958, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651084, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101017689, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 802370, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 653289, + "title": "Crisis management topic 7: Crises and disaster resilience – operationalizing resilience concepts", + "topic": "DRS-07-2014" +},{ + "projectID": 763551, + "title": "SESAR UTM Concept Definition", + "topic": "RPAS-01" +},{ + "projectID": 686709, + "title": "Scientific exploitation of astrophysics, comets, and planetary data", + "topic": "COMPET-05-2015" +},{ + "projectID": 735980, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 635844, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1a-2014" +},{ + "projectID": 873087, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 634880, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 811358, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021836, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 687338, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2015" +},{ + "projectID": 749161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101032311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835913, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 699238, + "title": "Automation in ATM", + "topic": "Sesar-01-2015" +},{ + "projectID": 672869, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 684759, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 665085, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 952644, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 729472, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 952275, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 101017441, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 101037128, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +},{ + "projectID": 101017237, + "title": "Neuromorphic computing technologies", + "topic": "FETPROACT-09-2020" +},{ + "projectID": 101004311, + "title": "Big data technologies and Artificial Intelligence for Copernicus", + "topic": "DT-SPACE-25-EO-2020" +},{ + "projectID": 831891, + "title": "Cognitive Computing potential for cockpit operations", + "topic": "JTI-CS2-2018-CFP08-THT-02" +},{ + "projectID": 674865, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 871573, + "title": "An empowering, inclusive Next Generation Internet", + "topic": "ICT-30-2019-2020" +},{ + "projectID": 860315, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 887731, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887708, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639072, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 949014, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852123, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101031716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 810775, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 824920, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 951900, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 740006, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101020934, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 957339, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 101001848, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 859383, + "title": "Stocktaking of 20 years of Gender equality in Research and Innovation", + "topic": "SC5-IBA-GENDER-2018" +},{ + "projectID": 857306, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 742204, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 858481, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007673, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101034240, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 726818, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 730817, + "title": "Safer infrastructure – improved object detection and prevention of safety critical events and integrated mobility", + "topic": "S2R-OC-CCA-04-2015" +},{ + "projectID": 101021723, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SU-DRS04-2019-2020" +},{ + "projectID": 897102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004259, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 869886, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 101021981, + "title": "Information and data stream management to fight against (cyber)crime and terrorism", + "topic": "SU-FCT03-2018-2019-2020" +},{ + "projectID": 957099, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101018826, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 957157, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 850539, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 867416, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002857, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 816078, + "title": "Analytical tools and models to support policies related to agriculture and food", + "topic": "RUR-04-2018-2019" +},{ + "projectID": 101018214, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101033646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 964270, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 787798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 664565, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 888249, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817328, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854633, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101017802, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 892358, + "title": "Digitalisation and Automation principles for ATM", + "topic": "SESAR-ER4-01-2019" +},{ + "projectID": 950086, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 889652, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101017284, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 101021797, + "title": "Secure and resilient Artificial Intelligence technologies, tools and solutions in support of Law Enforcement and citizen protection, cybersecurity operations and prevention and protection against adversarial Artificial Intelligence", + "topic": "SU-AI02-2020" +},{ + "projectID": 835931, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 965246, + "title": "Developing methodological approaches for improved clinical investigation and evaluation of high-risk medical devices", + "topic": "SC1-HCO-18-2020" +},{ + "projectID": 824414, + "title": "TSO – DSO – Consumer: Large-scale demonstrations of innovative grid services through demand response, storage and small-scale (RES) generation", + "topic": "LC-SC3-ES-5-2018-2020" +},{ + "projectID": 804422, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 947559, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648311, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 663110, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101034891, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101004366, + "title": "SRC - In-space electrical propulsion and station keeping - Incremental technologies", + "topic": "SPACE-28-TEC-2020" +},{ + "projectID": 899840, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 871763, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 871914, + "title": "Pre-Commercial Procurement open", + "topic": "ICT-34-2018-2019" +},{ + "projectID": 735470, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 657027, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 735134, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 887919, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949221, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 865620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893206, + "title": "U-space", + "topic": "SESAR-ER4-31-2019" +},{ + "projectID": 101010486, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 101020767, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 876651, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888900, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726572, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101026865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003134, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 681404, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 862535, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101021673, + "title": "Demonstration of applied solutions to enhance border and external security", + "topic": "SU-BES03-2018-2019-2020" +},{ + "projectID": 834283, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854448, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688579, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 823383, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806038, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101034369, + "title": "Behavioural Model of Factors Affecting Patient Adherence", + "topic": "IMI2-2020-23-06" +},{ + "projectID": 896307, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101017424, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 964009, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101004518, + "title": "Centres/Networks of European research and innovation: follow-up of the NearUS action", + "topic": "IBA-SC6-Near-2020" +},{ + "projectID": 674855, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 739555, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 739557, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 699359, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 831249, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879110, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 699219, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 737427, + "title": "EU mHealth hub including evidence for the integration of mHealth in the healthcare systems", + "topic": "SC1-HCO-09-2016" +},{ + "projectID": 830918, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 831291, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 642933, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 871311, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 101017436, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 831268, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643090, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 737550, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 101016687, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 673460, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 831263, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643343, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 801861, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 640734, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 818965, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 880144, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643341, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 645730, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 830949, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 740879, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831231, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 740180, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 642444, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 699266, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 872111, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 101016895, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 846205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 880037, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 824203, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 879781, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 743829, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 824220, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 643117, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 743479, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 879447, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643328, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 740188, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 880203, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 743407, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 866945, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643320, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 832124, + "title": "10. Innovative Enterprise Week 2018 - Austria", + "topic": "IBA-ARF-Austria-2018" +},{ + "projectID": 831284, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879656, + "title": "H2020 ENTREPRISE EUROPE NETWORK GA4 2020-2021", + "topic": "H2020-EEN-GA4" +},{ + "projectID": 871295, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 739513, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 642191, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 869634, + "title": "Development of commercial activities and services through the use of GEOSS and Copernicus data", + "topic": "SC5-16-2019" +},{ + "projectID": 879780, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643267, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 638327, + "title": "RISK FINANCE", + "topic": "RISK FINANCE" +},{ + "projectID": 830947, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 831239, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 874529, + "title": "Presidency Event on the Innovation Principle, Helsinki", + "topic": "IBA-DISS-PRESIDENCY-2019" +},{ + "projectID": 878993, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879851, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879932, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 101023886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 879864, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 776357, + "title": "Space portal", + "topic": "COMPET-6-2017" +},{ + "projectID": 680936, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 879029, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 738233, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 813863, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 673902, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643345, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 685722, + "title": "Presidency events", + "topic": "NMP-38-2015" +},{ + "projectID": 879703, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 644399, + "title": "FIRE+ (Future Internet Research & Experimentation)", + "topic": "ICT-11-2014" +},{ + "projectID": 831343, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879869, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 770766, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 831240, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879393, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 101035808, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 871709, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 643142, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 739579, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831285, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879429, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 801133, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 831207, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 951848, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 879454, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643126, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101035807, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 879415, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 830968, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 880033, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831230, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 743490, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831339, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879486, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879811, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831328, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879804, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879525, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831361, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 755899, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101006220, + "title": "Hands-on citizen science and frugal innovation", + "topic": "SwafS-27-2020" +},{ + "projectID": 878955, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 879406, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643371, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 735127, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 754511, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 788692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 682144, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101027472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948869, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 751684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 643307, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 830902, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 831257, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 744166, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 699638, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 831238, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 744155, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831289, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 739564, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 101021061, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 879440, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 674814, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643377, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 831326, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643263, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 831213, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 674805, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 830956, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 739561, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 670862, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 744181, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 643355, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 690732, + "title": "Transport societal drivers", + "topic": "MG-9.1-2015" +},{ + "projectID": 832230, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101030416, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 643277, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101007950, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 840874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 740400, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831280, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 880023, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 673868, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 703784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802227, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 725832, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 831340, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 856887, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 879775, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879417, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643374, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 740232, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 672283, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 101017057, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 879976, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 692224, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 824226, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 732561, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 706260, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 667824, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 850709, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101027259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758347, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 733352, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 707827, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 952512, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 669461, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 895904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747124, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 831279, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 645441, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 958255, + "title": "Incentivising newcomers (CSA)", + "topic": "NMBP-37-2020" +},{ + "projectID": 879518, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831329, + "title": "ENTERPRISE EUROPE NETWORK H2020 ASSOCIATED COUNTRIES", + "topic": "H2020-EEN-GA3" +},{ + "projectID": 673381, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 831358, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 865322, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775987, + "title": "13. 'Innovative Enterprise Week 2017'", + "topic": "IBA-ARF-IEW-2017" +},{ + "projectID": 739613, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 831250, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879470, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879894, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 101039254, + "title": "Ensuring greater synergies by testing new collaboration mechanisms between the EIT Innovation Communities and the Enhanced EIC Pilot in support of the the Green Deal and other Union policy priorities - Digital", + "topic": "IBA-EIC-DIGITAL-2020" +},{ + "projectID": 745945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742954, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 879575, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831298, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879241, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643298, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879493, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 674870, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 666363, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 642850, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 831146, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643269, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879597, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831345, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879448, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831272, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 880002, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879534, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 674817, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 101035809, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 879686, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879822, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 868957, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643334, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 743826, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831304, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 830899, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 739849, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 674826, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 672344, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 743573, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 766871, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 643329, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 654384, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 831294, + "title": "ENTERPRISE EUROPE NETWORK H2020 ASSOCIATED COUNTRIES", + "topic": "H2020-EEN-GA3" +},{ + "projectID": 831256, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 830959, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643287, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674862, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 770919, + "title": "H2020-EEN-GA-BCC-CH", + "topic": "H2020-EEN-GA-2017-1-CH" +},{ + "projectID": 674808, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 645751, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 831234, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879587, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643338, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 739598, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 642522, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879710, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 673844, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 884011, + "title": "The Euroscience Open Forum (ESOF) 2020", + "topic": "IBA-SWFS-ESOF-2019" +},{ + "projectID": 643326, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 670390, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101036702, + "title": "Fostering regulatory science to address combined exposures to industrial chemicals and pharmaceuticals: from science to evidence-based policies", + "topic": "LC-GD-8-2-2020" +},{ + "projectID": 882295, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755748, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 672768, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 827213, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 871650, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 955590, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 957546, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 770982, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 957491, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 739619, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 823971, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 831222, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 831260, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 101030356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 643369, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674812, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 778609, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 769791, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 739528, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 643253, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879665, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 743495, + "title": "2D CONSULTATION EEN BBC H2020", + "topic": "H2020-EEN-GA" +},{ + "projectID": 879401, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 879418, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831245, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879933, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 786805, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 879881, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 831287, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 871552, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 879923, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 830924, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879776, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 744211, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 674847, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 720996, + "title": "Novel hybrid materials for heterogeneous catalysis", + "topic": "NMBP-01-2016" +},{ + "projectID": 831246, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 642310, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 643363, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 743988, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 101034328, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 643316, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 958302, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 880015, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 743821, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 674854, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 710029, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 687794, + "title": "International partnership building and support to dialogues with high income countries", + "topic": "ICT-38-2015" +},{ + "projectID": 767636, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 722562, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 646113, + "title": "Networking of SMEs in the nano-biomedical sector", + "topic": "NMP-09-2014" +},{ + "projectID": 878204, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 642178, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 732056, + "title": "Net Innovation Initiative", + "topic": "ICT-12-2016" +},{ + "projectID": 879521, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 827220, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741370, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 643264, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 674856, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 953187, + "title": "Open Innovation Platform for Materials Modelling (RIA)", + "topic": "DT-NMBP-11-2020" +},{ + "projectID": 743828, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 831208, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879779, + "title": "H2020 ENTREPRISE EUROPE NETWORK GA4 2020-2021", + "topic": "H2020-EEN-GA4" +},{ + "projectID": 730124, + "title": "Evolution of Copernicus services", + "topic": "EO-3-2016" +},{ + "projectID": 674286, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674850, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 699367, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 763137, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 643362, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 740106, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 879503, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 757732, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 852097, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702538, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 948381, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101002761, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 803189, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 792862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702713, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 695175, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 704094, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 656370, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019739, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 702638, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866259, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 693024, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 671698, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 661103, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885150, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101020842, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 639217, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 705229, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 646702, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 661705, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 702329, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 703916, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 863412, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865768, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 715051, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 777740, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101029058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754695, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 884631, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 715368, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 842471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 667787, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 793328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815363, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855519, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726666, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 865715, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 799880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 674809, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643349, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879694, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 878656, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 957516, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 674831, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 824186, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 672533, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 754848, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 101026409, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816740, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643333, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879000, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643368, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 852220, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 674860, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 831211, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643335, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 717497, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 831278, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 879801, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643348, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 831327, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 672369, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643359, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879949, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 891747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674835, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674816, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674811, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 879402, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 643356, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 882506, + "title": "Sustainable Nano-Fabrication (CSA)", + "topic": "DT-NMBP-12-2019" +},{ + "projectID": 831242, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 829972, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643325, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 955476, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 879186, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 641896, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 888809, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 689495, + "title": "Cloud Computing, including security aspects", + "topic": "EUB-1-2015" +},{ + "projectID": 641941, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879473, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 818109, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 643032, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 831307, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 101004815, + "title": "Centres/Networks of European research and innovation", + "topic": "GOVERNANCE-20-2020" +},{ + "projectID": 892865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 643360, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 879698, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 101028981, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 739831, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 891529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029870, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 842386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 950254, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 819046, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 891217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702755, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 886380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788298, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 835736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 807637, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 652976, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101019563, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683655, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 875058, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710778, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 768016, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 774665, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101001212, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 867485, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 900025, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 884679, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 851705, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 799965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101004605, + "title": "Pilot on using the European cloud infrastructure for public administrations", + "topic": "DT-GOVERNANCE-12-2019-2020" +},{ + "projectID": 794315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101000752, + "title": "Closing nutrient cycles", + "topic": "CE-RUR-08-2018-2019-2020" +},{ + "projectID": 888805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 734409, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 735760, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 767568, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 773351, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 743760, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 842138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 867964, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711501, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 868978, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826775, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 809229, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 877351, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723702, + "title": "Systematic approaches for resource-efficient water management systems in process industries", + "topic": "SPIRE-01-2016" +},{ + "projectID": 746965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 689817, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 883484, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 846316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835453, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837635, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855523, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804453, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 792021, + "title": "Innovative bio-based fertilising products to increase the sustainability of fertilising practices in agriculture", + "topic": "BBI.2017.D4" +},{ + "projectID": 807480, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 683917, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 763186, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 956255, + "title": "Renewable and energy efficient solutions for heating and/or cooling, and domestic hot water production in multi-apartment residential buildings", + "topic": "LC-SC3-B4E-8-2020" +},{ + "projectID": 850275, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777450, + "title": "Patient perspectives in medicines lifecycle", + "topic": "IMI2-2016-10-07" +},{ + "projectID": 731671, + "title": "Thin, Organic and Large Area Electronics", + "topic": "ICT-02-2016" +},{ + "projectID": 853967, + "title": "AMR Accelerator programme Pillar A: Capability Building Network to accelerate and validate scientific discoveries", + "topic": "IMI2-2018-15-07" +},{ + "projectID": 806995, + "title": "Exploitation of IMI project results", + "topic": "IMI2-2017-11-01" +},{ + "projectID": 670494, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 712259, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 888297, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739264, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 647850, + "title": "Access Control", + "topic": "DS-02-2014" +},{ + "projectID": 687960, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 870935, + "title": "The societal value of culture and the impact of cultural policies in Europe", + "topic": "TRANSFORMATIONS-08-2019" +},{ + "projectID": 837395, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680934, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 883341, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 828014, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950872, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 756850, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 782829, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 718404, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 736454, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 684035, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101029391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 853123, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 889798, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644270, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 826943, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878416, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762585, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 816545, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644727, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 821952, + "title": "Space hubs for Copernicus", + "topic": "DT-SPACE-07-BIZ-2018" +},{ + "projectID": 644905, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 807536, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 731456, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 683289, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 663327, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 768405, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 795714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 755477, + "title": "Flight management system providing noise abatement flight procedures for compound rotorcraft", + "topic": "JTI-CS2-2016-CFP04-FRC-02-17" +},{ + "projectID": 669844, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 750807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766499, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 715111, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 774974, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 805767, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 775544, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 737564, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 851191, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 785582, + "title": "Screening and development of optimized materials (wires, potting resins and impregnating varnishes) for high temperature coils", + "topic": "JTI-CS2-2017-CFP06-SYS-03-11" +},{ + "projectID": 849704, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808469, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 700581, + "title": "The role of ICT in Critical Infrastructure Protection", + "topic": "DS-03-2015" +},{ + "projectID": 723925, + "title": "Integration of advanced technologies for heating and cooling at building and district level", + "topic": "EEB-03-2016" +},{ + "projectID": 738589, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 827468, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837912, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804305, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 805593, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101004129, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 720024, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 821940, + "title": "Copernicus evolution – Mission exploitation concepts", + "topic": "LC-SPACE-02-EO-2018" +},{ + "projectID": 887240, + "title": "Coupon and element testing and manufacturing of test article for morphing technologies", + "topic": "JTI-CS2-2019-CFP10-AIR-01-45" +},{ + "projectID": 810321, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 775913, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101027980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 742102, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 680431, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FoF-09-2015" +},{ + "projectID": 647434, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101034765, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 841956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864597, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101025758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101032523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727541, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 750602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815807, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 729640, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 762256, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 868575, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636286, + "title": "Safer and more efficient waterborne operations through new technologies and smarter traffic management", + "topic": "MG-4.2-2014" +},{ + "projectID": 663303, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 825201, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 780662, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 775025, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 867569, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740477, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 723324, + "title": "Safety and end-user acceptance aspects of road automation in the transition period", + "topic": "ART-04-2016" +},{ + "projectID": 691133, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 726849, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 755517, + "title": "Multivariable control approach for electrical air conditioning pack", + "topic": "JTI-CS2-2016-CFP04-SYS-02-26" +},{ + "projectID": 723828, + "title": "Continuous adaptation of work environments with changing levels of automation in evolving production systems", + "topic": "FOF-04-2016" +},{ + "projectID": 729061, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 831833, + "title": "Design of special welding head for FSW process with automatic adjustable pin and welding force control system [SAT]", + "topic": "JTI-CS2-2018-CfP08-AIR-02-65" +},{ + "projectID": 101000154, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 855257, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684937, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 698201, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 880637, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763249, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 814958, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 767942, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 712659, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 793361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 827200, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816449, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021911, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 895978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871473, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 101003411, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 700085, + "title": "Law Enfocement capabilities topic 5: Identity Management", + "topic": "FCT-09-2015" +},{ + "projectID": 101020560, + "title": "Cybersecurity in the Electrical Power and Energy System (EPES): an armour against cyber and privacy attacks and data breaches", + "topic": "SU-DS04-2018-2020" +},{ + "projectID": 883374, + "title": "Demonstration of applied solutions to enhance border and external security", + "topic": "SU-BES03-2018-2019-2020" +},{ + "projectID": 653417, + "title": "Access Control", + "topic": "DS-02-2014" +},{ + "projectID": 870726, + "title": "Societal challenges and the arts", + "topic": "TRANSFORMATIONS-17-2019" +},{ + "projectID": 653256, + "title": "Ethical/Societal Dimension Topic 2: Enhancing cooperation between law enforcement agencies and citizens - Community policing", + "topic": "FCT-14-2014" +},{ + "projectID": 773932, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 767383, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 738441, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101019645, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 826304, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 883588, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 783977, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 825061, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 833714, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 830907, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 786993, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 776127, + "title": "Presidency events - eHealth", + "topic": "IBA-SC1-eHealth-2017" +},{ + "projectID": 687780, + "title": "International partnership building and support to dialogues with high income countries", + "topic": "ICT-38-2015" +},{ + "projectID": 643964, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 889276, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740787, + "title": "Cyber Security for SMEs, local public administration and Individuals", + "topic": "DS-02-2016" +},{ + "projectID": 822995, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883464, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 711264, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015" +},{ + "projectID": 822555, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674510, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 833635, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 736395, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 874825, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 745469, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 833704, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 740872, + "title": "Situational awareness systems to support civil protection preparation and operational decision making", + "topic": "SEC-02-DRS-2016" +},{ + "projectID": 764461, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 636909, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 762221, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 850059, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 848554, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883188, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 651892, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 787123, + "title": "Acceptance of no gate crossing point solutions", + "topic": "SEC-18-BES-2017" +},{ + "projectID": 640652, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 883335, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 653454, + "title": "Access Control", + "topic": "DS-02-2014" +},{ + "projectID": 674463, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 720417, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 815823, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826549, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725110, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 681450, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 677960, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101017248, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 860060, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 894790, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 954689, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 771143, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101006726, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 947696, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 797520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 751378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852818, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 819585, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 894616, + "title": "Innovation in CNS to enable Digitalised Operations", + "topic": "SESAR-ER4-24-2019" +},{ + "projectID": 819856, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 661183, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645759, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 829639, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899539, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 945125, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 708572, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 795209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 872902, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659534, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 850330, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874316, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854970, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727417, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 878071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879499, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876600, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 638030, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 892393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656566, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 876145, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659082, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831117, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 640873, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 101029025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656214, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 751375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655760, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705857, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 833454, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 727651, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 771647, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 662322, + "title": "ECSEL Key Applications and Essential Technologies (RIA)", + "topic": "ECSEL-01-2014" +},{ + "projectID": 844511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 826600, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 688173, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 805246, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 792720, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696266, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 101034814, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 756277, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 670406, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 967987, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838771, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637748, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 653296, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 953549, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841005, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 755380, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 729332, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 644104, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 737465, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 732423, + "title": "Thin, Organic and Large Area Electronics", + "topic": "ICT-02-2016" +},{ + "projectID": 711323, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 849068, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 857793, + "title": "Increase the competitiveness of the EU PV manufacturing industry", + "topic": "LC-SC3-RES-15-2019" +},{ + "projectID": 738789, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 740055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727523, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 780914, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 715027, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101032216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 669054, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 696519, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 701246, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 759800, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 891464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 811305, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101030119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963912, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 813021, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 888993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101034822, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 752164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 641353, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 756225, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 788137, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 658070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 746964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815748, + "title": "New technologies for the enhanced recovery of by-products", + "topic": "CE-SC5-06-2018" +},{ + "projectID": 948250, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948504, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 701632, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662338, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-02-2014" +},{ + "projectID": 101017194, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 780758, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 954553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891624, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 646984, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 827645, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 706744, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662175, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-02-2014" +},{ + "projectID": 892725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 881273, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737447, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101028536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758885, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 640073, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 639749, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 798271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846463, + "title": "Socio-economic research conceptualising and modelling energy efficiency and energy demand", + "topic": "LC-SC3-EE-14-2018-2019-2020" +},{ + "projectID": 968825, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893924, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 847048, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 840651, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 952140, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 674167, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 847029, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 744239, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101035887, + "title": "Concerted Action supporting the transposition and implementation of the recast Renewables Directive", + "topic": "IBA-SC3-RENEWABLES-2020" +},{ + "projectID": 684038, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 728607, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 847059, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 754162, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 773897, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 680169, + "title": "New technologies for utilization of heat recovery in large industrial systems, considering the whole energy cycle from heat production to transformation, delivery and end use", + "topic": "EE-18-2015" +},{ + "projectID": 820482, + "title": "Support to the Austrian Presidency Conference on the European Strategic Technology Plan (SET-Plan) 2018", + "topic": "IBA-ENERGY-SETPLAN-2018" +},{ + "projectID": 743900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815271, + "title": "Renewable energy system integrated at the building scale", + "topic": "LC-SC3-RES-4-2018" +},{ + "projectID": 673874, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 767170, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 820497, + "title": "5th Concerted Action on the Energy Performance of Buildings Directive support to Member States and participating countries for the implementation of the EPBD", + "topic": "IBA-Energy-EPBD-2018" +},{ + "projectID": 815696, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672615, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 842214, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 864152, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855413, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773708, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 101032239, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 826002, + "title": "Disruptive innovation in clean energy technologies", + "topic": "LC-SC3-RES-2-2018" +},{ + "projectID": 952184, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 791535, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101033940, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 957843, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 672474, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 806844, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 784651, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 957119, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 956936, + "title": "Support to the coordination of European smart buildings innovation community", + "topic": "LC-SC3-B4E-9-2020" +},{ + "projectID": 872737, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829681, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036908, + "title": "Develop and demonstrate a 100 MW electrolyser upscaling the link between renewables and commercial/industrial applications", + "topic": "LC-GD-2-2-2020" +},{ + "projectID": 863874, + "title": "Solutions for increased regional cross-border cooperation in the transmission grid", + "topic": "LC-SC3-ES-2-2019" +},{ + "projectID": 641003, + "title": "Fostering the network of National Contact Points", + "topic": "LCE-22-2014" +},{ + "projectID": 838814, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 101032153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033810, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 828429, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778039, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 754382, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 695923, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 101033787, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 826033, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 762152, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 952879, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 834506, + "title": "Support to disruptive innovation in clean energy technologies", + "topic": "IBA-SC3-CLEAN-2018" +},{ + "projectID": 785081, + "title": "Innovative financing schemes", + "topic": "EE-23-2017" +},{ + "projectID": 723059, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 877730, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649972, + "title": "Public procurement of innovative sustainable energy solutions", + "topic": "EE-08-2014" +},{ + "projectID": 708257, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 742930, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 881184, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819533, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 695916, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 846085, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 101025866, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 883528, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649849, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2014" +},{ + "projectID": 867479, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036766, + "title": "Innovative land-based and offshore renewable energy technologies and their integration into the energy system", + "topic": "LC-GD-2-1-2020" +},{ + "projectID": 101009447, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 810980, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 894514, + "title": "Stimulating demand for sustainable energy skills in the construction sector", + "topic": "LC-SC3-EE-3-2019-2020" +},{ + "projectID": 749402, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 790993, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 808774, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 864579, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 774553, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 824342, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 101048703, + "title": "Concerted Action on the Energy Efficiency Directive support to Member States and participating countries for the implementation of the EED", + "topic": "IBA-SC3-EED-2021" +},{ + "projectID": 898194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956649, + "title": "Towards highly energy efficient and decarbonised buildings", + "topic": "LC-SC3-B4E-1-2020" +},{ + "projectID": 649865, + "title": "Increasing energy performance of existing buildings through process and organisation innovations and creating a market for deep renovation", + "topic": "EE-05-2014" +},{ + "projectID": 101033743, + "title": "Stimulating demand for sustainable energy skills in the building sector", + "topic": "LC-SC3-B4E-2-2020" +},{ + "projectID": 101032833, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 690771, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 101000158, + "title": "Big data for buildings", + "topic": "LC-SC3-B4E-6-2020" +},{ + "projectID": 673976, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 825998, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 819175, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 654465, + "title": "Enabling decarbonisation of the fossil fuel-based power sector and energy intensive industry through CCS", + "topic": "LCE-15-2015" +},{ + "projectID": 884291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745284, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 773839, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 893938, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 858382, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882171, + "title": "Support to the initiative on sustainable energy in the defence and security sector", + "topic": "IBA-SC3-Support-2019" +},{ + "projectID": 648319, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 649846, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2014" +},{ + "projectID": 785147, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 643317, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101022587, + "title": "Integrated local energy systems (Energy islands): International cooperation with India", + "topic": "LC-SC3-ES-13-2020" +},{ + "projectID": 101033676, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 649717, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 101033682, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 883730, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 673527, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 844023, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101033864, + "title": "Stimulating demand for sustainable energy skills in the building sector", + "topic": "LC-SC3-B4E-2-2020" +},{ + "projectID": 101006752, + "title": "Advanced drilling and well completion techniques for cost reduction in geothermal energy", + "topic": "LC-SC3-RES-18-2020" +},{ + "projectID": 808671, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 804554, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 649718, + "title": "Public procurement of innovative sustainable energy solutions", + "topic": "EE-08-2014" +},{ + "projectID": 857831, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 672942, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 887077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695996, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2015" +},{ + "projectID": 793318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754080, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 869810, + "title": "Integrated storage systems for residential buildings (IA)", + "topic": "LC-EEB-05-2019-20" +},{ + "projectID": 649772, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 844902, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 746830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744518, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 820735, + "title": "Processing of material feedstock using non-conventional energy sources (IA)", + "topic": "CE-SPIRE-02-2018" +},{ + "projectID": 699649, + "title": "Energy 75 per cent reimbursement", + "topic": "Energy75" +},{ + "projectID": 838181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 829651, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028220, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 818232, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 840461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774431, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 807830, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 707340, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 649473, + "title": "Construction skills", + "topic": "EE-04-2014" +},{ + "projectID": 748425, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 952851, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 838702, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 836317, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685559, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 864300, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 811145, + "title": "Contribution to the International Energy Agency (IEA)", + "topic": "IBA-SC3-IEA-2017-2" +},{ + "projectID": 883710, + "title": "Development of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-16-2019" +},{ + "projectID": 101033740, + "title": "Stimulating demand for sustainable energy skills in the building sector", + "topic": "LC-SC3-B4E-2-2020" +},{ + "projectID": 857804, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 894800, + "title": "Business case for industrial waste heat/cold recovery", + "topic": "LC-SC3-EE-6-2018-2019-2020" +},{ + "projectID": 781616, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 785088, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 785032, + "title": "Increasing capacities for actual implementation of energy efficiency measures in industry and services", + "topic": "EE-15-2017" +},{ + "projectID": 957269, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 893858, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 833125, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 769355, + "title": "The Port of the future", + "topic": "MG-7-3-2017" +},{ + "projectID": 730628, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101022553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716998, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 796830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 743426, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 662446, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 946330, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783696, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 678977, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 673676, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 717556, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 674409, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 792212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 662561, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 711692, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 692247, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 853765, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 826673, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 801830, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 884411, + "title": "Solar Energy in Industrial Processes", + "topic": "LC-SC3-RES-7-2019" +},{ + "projectID": 782061, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 777900, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 726665, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 733627, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 875946, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700378, + "title": "The role of ICT in Critical Infrastructure Protection", + "topic": "DS-03-2015" +},{ + "projectID": 101007630, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 763094, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 644024, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 816826, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723523, + "title": "Plant-wide monitoring and control of data-intensive processes", + "topic": "SPIRE-02-2016" +},{ + "projectID": 826278, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 734753, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 847943, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 754550, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 642328, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 889405, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850696, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 952911, + "title": "Next generation of thin-film photovoltaic technologies", + "topic": "LC-SC3-RES-9-2020" +},{ + "projectID": 672421, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 737882, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 806773, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 816954, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701704, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 663655, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 877136, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101038041, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101016041, + "title": "Repurposing of manufacturing for vital medical supplies and equipment.", + "topic": "SC1-PHE-CORONAVIRUS-2020-2A" +},{ + "projectID": 661517, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 811248, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771288, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 952197, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 650169, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 701557, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101006203, + "title": "Innovators of the future: bridging the gender gap", + "topic": "SwafS-26-2020" +},{ + "projectID": 732399, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 717829, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 711591, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 744178, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 872685, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819458, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 838171, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 947837, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 712179, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 883809, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 884213, + "title": "Solar Energy in Industrial Processes", + "topic": "LC-SC3-RES-7-2019" +},{ + "projectID": 822956, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949648, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101003410, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 645770, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 728999, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 779780, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 642494, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 823356, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 650571, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 657898, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723825, + "title": "New technologies and strategies for the development of pre-fabricated elements through the reuse and recycling of construction materials and structures", + "topic": "EEB-04-2016" +},{ + "projectID": 101024003, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703711, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 887558, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101038078, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 740279, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 713742, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 675624, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 746954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 781233, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 794760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 751066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007962, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 752714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101038049, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101026030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 733025, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 728029, + "title": "Intelligent solutions and tools in forest production systems, fostering a sustainable supply of quality wood for the growing bioeconomy", + "topic": "BB-04-2016" +},{ + "projectID": 813920, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 868686, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 772126, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 645141, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 957221, + "title": "Sensing functionalities for smart battery cell chemistries", + "topic": "LC-BAT-13-2020" +},{ + "projectID": 954604, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778072, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 875302, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 819600, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 827181, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710995, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 826851, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 695459, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 945335, + "title": "Fostering innovation in decommissioning of nuclear facilities", + "topic": "NFRP-2019-2020-09" +},{ + "projectID": 831881, + "title": "Innovative NOx Reduction Technologies", + "topic": "JTI-CS2-2018-CFP08-THT-01" +},{ + "projectID": 821904, + "title": "SRC – Space robotics technologies", + "topic": "SPACE-12-TEC-2018" +},{ + "projectID": 703937, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835548, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 739479, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 729375, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 886637, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789051, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 890419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 732493, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 733169, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 742789, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 730082, + "title": "Evolution of Copernicus services", + "topic": "EO-3-2016" +},{ + "projectID": 716510, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 745011, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 101029808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832790, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 740593, + "title": "Border Security: autonomous systems and control systems", + "topic": "SEC-20-BES-2016" +},{ + "projectID": 871747, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817032, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 704963, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 735990, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 740736, + "title": "Border Security: autonomous systems and control systems", + "topic": "SEC-20-BES-2016" +},{ + "projectID": 673885, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 651805, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 957570, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 680895, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 688156, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 744484, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101003187, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 963947, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 893674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875586, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 663953, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 666588, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 842349, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 820881, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 663157, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 856994, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 790316, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 720184, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 713659, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 876354, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732389, + "title": "Thin, Organic and Large Area Electronics", + "topic": "ICT-02-2016" +},{ + "projectID": 690727, + "title": "Safe and connected automation in road transport", + "topic": "MG-3.6a-2015" +},{ + "projectID": 734875, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 790659, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 742708, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 832214, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 709382, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892440, + "title": "Remain Well Clear for IFR RPAS Integration in Class D-G Airspace", + "topic": "SESAR-ER4-29-2019" +},{ + "projectID": 830150, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651137, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 870378, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 887647, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878216, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855006, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 897449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854910, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 682756, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 875164, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 736354, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 719097, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 718188, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 884447, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 664235, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 802205, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 696443, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 712317, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 848361, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877099, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832813, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 885407, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808146, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 816098, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 766139, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101032614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646296, + "title": "High-definition printing of multifunctional materials", + "topic": "NMP-04-2014" +},{ + "projectID": 875597, + "title": "Human centred design for the new driver role in highly automated vehicles", + "topic": "DT-ART-03-2019" +},{ + "projectID": 875971, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 964529, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 745820, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703185, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793559, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 651414, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 848537, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713368, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 887791, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876619, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 865995, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 886905, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773431, + "title": "Organic inputs – contentious inputs in organic farming", + "topic": "SFS-08-2017" +},{ + "projectID": 715757, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 708122, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 853864, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 825172, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 645239, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 822134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825892, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 673782, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 807389, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 889000, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697140, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 861673, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101027633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 688735, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 855274, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 955681, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 807205, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 701867, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705617, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101019972, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 881297, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888061, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713736, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 718755, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 101031327, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833650, + "title": "Demonstration of applied solutions to enhance border and external security", + "topic": "SU-BES03-2018-2019-2020" +},{ + "projectID": 816896, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 801572, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 828485, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698607, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 815180, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 959600, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833057, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 826588, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 728572, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 768953, + "title": "ICT infrastructure to enable the transition towards road transport automation", + "topic": "ART-01-2017" +},{ + "projectID": 776825, + "title": "Novel in-situ observation systems", + "topic": "SC5-18-2017" +},{ + "projectID": 854640, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744926, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 696961, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 826668, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674741, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 101022433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 672910, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 690323, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 696129, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2015" +},{ + "projectID": 785564, + "title": "Advanced Instrumented Engine cradle of the Turboprop demonstrator", + "topic": "JTI-CS2-2017-CFP06-ENG-01-22" +},{ + "projectID": 745204, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 697956, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 714062, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 651036, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 757166, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 795615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 888082, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 840854, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 719241, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 643892, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 839436, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 788949, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 719180, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 871525, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 658563, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 811977, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780785, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 101022279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 673138, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 720182, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 838823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820971, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 730863, + "title": "Intelligent freight wagon with predictive maintenance", + "topic": "S2R-OC-IP5-03-2015" +},{ + "projectID": 898940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887775, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815452, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876326, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 637162, + "title": "Support for the enhancement of the impact of EeB PPP projects", + "topic": "EeB-04-2014" +},{ + "projectID": 783162, + "title": "RIA", + "topic": "ECSEL-2017-2" +},{ + "projectID": 964531, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 732105, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2016" +},{ + "projectID": 729864, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 824333, + "title": "Virtual product development and production of all types of electrified vehicles and components", + "topic": "LC-GV-02-2018" +},{ + "projectID": 719094, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 767864, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 726776, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 761676, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 808061, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101027829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 824295, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 809095, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 827120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824250, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 773813, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 672598, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 846455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101010406, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 761917, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101019137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734832, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 830239, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816191, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 968403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 706253, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 827876, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684534, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 877808, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010139, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 729083, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 875029, + "title": "Strongly improved, highly performant and safe all solid state batteries for electric vehicles (RIA)", + "topic": "LC-BAT-1-2019" +},{ + "projectID": 807791, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 807544, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 680435, + "title": "Flexible production systems based on integrated tools for rapid reconfiguration of machinery and robots", + "topic": "FoF-11-2015" +},{ + "projectID": 652237, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 666423, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 734459, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 735287, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 809475, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 692519, + "title": "Semicondutor Process, Equipment and Materials", + "topic": "ECSEL-06-2015" +},{ + "projectID": 703382, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 862858, + "title": "Agri-Aqua Labs", + "topic": "SFS-30-2018-2019-2020" +},{ + "projectID": 814596, + "title": "Innovative and affordable solutions for the preventive conservation of cultural heritage (IA)", + "topic": "NMBP-33-2018" +},{ + "projectID": 898354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 692522, + "title": "Semicondutor Process, Equipment and Materials", + "topic": "ECSEL-15-2015" +},{ + "projectID": 760528, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 751905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897025, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 780086, + "title": "Robotics Competition, coordination and support", + "topic": "ICT-28-2017" +},{ + "projectID": 727542, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101038045, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 698136, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101029688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 729450, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 797311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 767579, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 680875, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 687593, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 101031397, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 849157, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643735, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 885803, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680569, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 672453, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 812790, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 776324, + "title": "EGNSS professional applications", + "topic": "GALILEO-3-2017" +},{ + "projectID": 825232, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 720571, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 815319, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 899891, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101028137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 763815, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 726605, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 963980, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 659963, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 763210, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 878106, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651823, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 703988, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 857586, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 644852, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 672934, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 842555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 684135, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 773645, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 868749, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649621, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2014" +},{ + "projectID": 885916, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663018, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 646155, + "title": "Industrial-scale production of nanomaterials for printing applications", + "topic": "NMP-05-2014" +},{ + "projectID": 832183, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774303, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 710741, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 658846, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659265, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 808961, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 735302, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 684167, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 665216, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 659288, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 691684, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 875933, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639766, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 867433, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 688403, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 729575, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 706303, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 721367, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 952133, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 870144, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 852796, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 821362, + "title": "A sustainable European induced pluripotent stem cell platform", + "topic": "IMI2-2017-13-06" +},{ + "projectID": 814299, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 864299, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 634886, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 833915, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 779411, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 824585, + "title": "Gender Equality Academy and dissemination of gender knowledge across Europe", + "topic": "SwafS-13-2018" +},{ + "projectID": 952398, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 850014, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870276, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 835420, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683954, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 820555, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 680567, + "title": "Industrial technologies for advanced joining and assembly processes for multi-materials", + "topic": "FoF-12-2015" +},{ + "projectID": 953192, + "title": "Materials for off shore energy (IA)", + "topic": "LC-NMBP-31-2020" +},{ + "projectID": 951813, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 820661, + "title": "Innovative manufacturing of opto-electrical parts (RIA)", + "topic": "DT-FOF-03-2018" +},{ + "projectID": 869939, + "title": "Adaptation to variable feedstock through retrofitting (IA 50%)", + "topic": "CE-SPIRE-05-2019" +},{ + "projectID": 870062, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 101007814, + "title": "Tooling, Equipment and Auxiliaries for the closure of a longitudinal Barrel Joint: Overlap joint and Frame Coupling integration", + "topic": "JTI-CS2-2020-CfP11-LPA-02-34" +},{ + "projectID": 647281, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 869963, + "title": "Handling systems for flexible materials (RIA)", + "topic": "DT-FOF-12-2019" +},{ + "projectID": 686085, + "title": "HVDC Network management", + "topic": "JTI-CS2-2014-CFP01-FRC-02-08" +},{ + "projectID": 101034989, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 645660, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 654124, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 651574, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 874102, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 758383, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 885615, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744753, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 865618, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101007319, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 891606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 742610, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 829047, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862095, + "title": "Smart materials, systems and structures for energy harvesting (RIA)", + "topic": "LC-NMBP-32-2019" +},{ + "projectID": 645771, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 644332, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 101004192, + "title": "EGNSS applications fostering digitisation", + "topic": "DT-SPACE-EGNSS-2-2019-2020" +},{ + "projectID": 652206, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 776559, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 802093, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 849538, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727536, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 679211, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 739614, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 710460, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 637935, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 815712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101018843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899908, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 650314, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 650785, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 870236, + "title": "EGNSS applications fostering digitisation", + "topic": "DT-SPACE-EGNSS-2-2019-2020" +},{ + "projectID": 729524, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 839271, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 756943, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 841903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 680734, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FoF-09-2015" +},{ + "projectID": 792175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 787826, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 865816, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 697066, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 855170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 830134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652292, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 752363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688122, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 817190, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 781276, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 780529, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 779786, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 888409, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759212, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 881182, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687148, + "title": "Smart Integrated Wing – Life extended hydrostatic & lubricated systems", + "topic": "JTI-CS2-2014-CFP01-SYS-02-01" +},{ + "projectID": 688784, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 652303, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 656467, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 772539, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 819815, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 703566, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785946, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 651956, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 679186, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 665775, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101025887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758199, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 820999, + "title": "Resilience and sustainable reconstruction of historic areas to cope with climate change and hazard events", + "topic": "LC-CLA-04-2018" +},{ + "projectID": 801221, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 875209, + "title": "Large Scale pilots of personalised & outcome based integrated care", + "topic": "SC1-DTH-11-2019" +},{ + "projectID": 747808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705423, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 654424, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 845685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 657536, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681070, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 818521, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101026484, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001051, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 852873, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 797014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 898813, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 818343, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 648509, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101030938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693739, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 865469, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 793072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746995, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647106, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 792799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032854, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706283, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705079, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701492, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101000554, + "title": "Integrated health approaches and alternatives to pesticide use", + "topic": "SFS-04-2019-2020" +},{ + "projectID": 793039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 700281, + "title": "Ethical/Societal Dimension Topic 3: Better understanding the role of new social media networks and their use for public security purposes", + "topic": "FCT-15-2015" +},{ + "projectID": 690907, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 840737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 802689, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101019879, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 757254, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101030797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 650216, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 963542, + "title": "Next-generation batteries for stationary energy storage", + "topic": "LC-BAT-8-2020" +},{ + "projectID": 639046, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101025312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891173, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948021, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 693799, + "title": "European cultural and science diplomacy: exploiting the potential of culture and science in the EU’s external relations", + "topic": "INT-11-2015" +},{ + "projectID": 669746, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 862563, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 896509, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 779613, + "title": "PNR for a safe use of liquid hydrogen", + "topic": "FCH-04-4-2017" +},{ + "projectID": 679092, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 746554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703949, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772357, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 747931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945169, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 703873, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101022696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835180, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 749201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703635, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 811385, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 681577, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 701584, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 834621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 753296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724601, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 826898, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834057, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 648734, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 742595, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101030640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804710, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101017572, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 101016112, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 971007, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 960509, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 962036, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713406, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 101003713, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 961745, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101024974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101016203, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 101003688, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 634650, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 961112, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960095, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826840, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 871275, + "title": "An empowering, inclusive Next Generation Internet", + "topic": "ICT-30-2019-2020" +},{ + "projectID": 695045, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101003627, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 101030481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 961916, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816173, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945097, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 894449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 959310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718956, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 946598, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101032759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101036103, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 745755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003606, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 737432, + "title": "Coordinating scientific advice for policy making provided by the European networks of Academies", + "topic": "IBA-EUROPE-ENA-2016" +},{ + "projectID": 748627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101005111, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 101006316, + "title": "Bottom-up approach to build SwafS knowledge base", + "topic": "SwafS-31-2020" +},{ + "projectID": 101016174, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 865082, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016046, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 959436, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101024066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003595, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 965356, + "title": "Pre-commercial procurement (PCP) for integrated care solutions", + "topic": "SC1-BHC-20A-2020" +},{ + "projectID": 101025273, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 962678, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659961, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101018100, + "title": "Grant to the Coalition for Epidemic Preparedness Innovations (CEPI)", + "topic": "SGA-SC1-CEPI-2020" +},{ + "projectID": 101027218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101007641, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101021526, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 723770, + "title": "ERA-NET on Nanomedicine", + "topic": "NMBP-11-2016" +},{ + "projectID": 961845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 961050, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671295, + "title": "European label for innovation voucher programmes", + "topic": "INNOSUP-4-2014" +},{ + "projectID": 825825, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 734596, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 821832, + "title": "Space outreach and education", + "topic": "DT-SPACE-08-BIZ-2018" +},{ + "projectID": 814747, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 956603, + "title": "Next Generation Media", + "topic": "ICT-44-2020" +},{ + "projectID": 101036071, + "title": "European Museum Collaboration and Innovation Space", + "topic": "DT-TRANSFORMATIONS-24-2020" +},{ + "projectID": 640868, + "title": "New knowledge and technologies", + "topic": "LCE-01-2014" +},{ + "projectID": 700961, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 645676, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 777911, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 838335, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of SC6: follow-up project", + "topic": "IBA-SC6-NCP-2018" +},{ + "projectID": 892970, + "title": "Digitalisation and Automation principles for ATM", + "topic": "SESAR-ER4-01-2019" +},{ + "projectID": 883596, + "title": "Information and data stream management to fight against (cyber)crime and terrorism", + "topic": "SU-FCT03-2018-2019-2020" +},{ + "projectID": 898932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 691218, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101021347, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 898466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 728633, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 836268, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739701, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 857339, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 965486, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 846540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702666, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 871518, + "title": "Security and resilience for collaborative manufacturing environments", + "topic": "ICT-08-2019" +},{ + "projectID": 851103, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 767542, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 740859, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 101027770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101008100, + "title": "Engine bleed jet pumps continuous behaviour modelization", + "topic": "JTI-CS2-2020-CfP11-LPA-01-93" +},{ + "projectID": 833828, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 732737, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 783790, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 694918, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 967144, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725974, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 888285, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819080, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 850053, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 782077, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 872139, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 850861, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 884622, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 780470, + "title": "Tools for smart digital content in the creative industries", + "topic": "ICT-20-2017" +},{ + "projectID": 671937, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 873918, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885679, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831109, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 888926, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825207, + "title": "ERA-NET Cofund for FET Flagships", + "topic": "FETFLAG-02-2018" +},{ + "projectID": 646039, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2014" +},{ + "projectID": 730027, + "title": "Partnering environment for FET flagships", + "topic": "FETFLAG-01-2016" +},{ + "projectID": 101016958, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 957402, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 861264, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 782116, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 723650, + "title": "Plant-wide monitoring and control of data-intensive processes", + "topic": "SPIRE-02-2016" +},{ + "projectID": 757497, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101028566, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 855633, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775546, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 957017, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 676774, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 730254, + "title": "Sustainable urbanisation", + "topic": "SCC-04-2016" +},{ + "projectID": 845178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 849628, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886533, + "title": "Toward a Digital Twin ECS and thermal management architecture models : Improvement of MODELICA libraries and usage of Deep Learning technics", + "topic": "JTI-CS2-2019-CfP10-SYS-02-60" +},{ + "projectID": 826250, + "title": "Measuring and monitoring devices for railway assets", + "topic": "S2R-OC-IP3-01-2018" +},{ + "projectID": 768977, + "title": "FET ERANET Cofund", + "topic": "FETPROACT-02-2017" +},{ + "projectID": 960877, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 947006, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101001791, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 956962, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 897124, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731117, + "title": "Joint Actions towards the demonstration and validation of innovative energy solutions", + "topic": "LCE-34-2016" +},{ + "projectID": 758969, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757275, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101004509, + "title": "Society and innovations: understanding the contexts, processes and consequences", + "topic": "TRANSFORMATIONS-15-2020" +},{ + "projectID": 724060, + "title": "Food systems and water resources for the development of inclusive, sustainable and healthy Euro-Mediterranean societies", + "topic": "SC5-12-2016" +},{ + "projectID": 873537, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883973, + "title": "ERA-NET Co-Fund Enhanced cooperation in Digitalisation of Energy Systems and Networks", + "topic": "LC-SC3-ES-9-2019" +},{ + "projectID": 847457, + "title": "Presidency conference(s)", + "topic": "IBA-MSCA-Romanian-Presidency-2018" +},{ + "projectID": 857160, + "title": "Support to JPI Urban Europe", + "topic": "WIDESPREAD-02-2018" +},{ + "projectID": 824238, + "title": "Support for dissemination events in the field of Transport Research", + "topic": "MG-4-4-2018-2019" +},{ + "projectID": 775970, + "title": "ERA-NET Co-Fund Enhanced cooperation in Smart Local and Regional Energy Networks of the European Energy System", + "topic": "LCE-37-2017" +},{ + "projectID": 726744, + "title": "Support to JPI Urban Europe", + "topic": "WIDESPREAD-02-2016" +},{ + "projectID": 643578, + "title": "ERA NET rare disease research implementing IRDiRC objectives", + "topic": "HCO-10-2014" +},{ + "projectID": 724411, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 951846, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 797805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871783, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 787981, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 857925, + "title": "FET ERA-NET Cofund", + "topic": "FETPROACT-03-2018" +},{ + "projectID": 648379, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 817342, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783838, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 775161, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 655598, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 815776, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705869, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659669, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 947034, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827951, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728640, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 854748, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002247, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 886276, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727409, + "title": "PCP - eHealth innovation in empowering the patient", + "topic": "SC1-PM-12-2016" +},{ + "projectID": 101017151, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 763100, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 634559, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 656701, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 715662, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 842080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705475, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 749869, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 845104, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948196, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 745538, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101021016, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 648916, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 813109, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101027450, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 774548, + "title": "How to tackle the childhood obesity epidemic?", + "topic": "SFS-39-2017" +},{ + "projectID": 101027215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773047, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 873986, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808639, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 815962, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 754936, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 865792, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 682679, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 645640, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 846502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000723, + "title": "Innovative agri-food value chains: boosting sustainability-oriented competitiveness", + "topic": "RUR-06-2020" +},{ + "projectID": 863183, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 735341, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101020641, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 805990, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 706293, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885003, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 695054, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 827984, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 852470, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 662894, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 809563, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 768783, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 738846, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 645710, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 882946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 683145, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 799510, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 701944, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 661622, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655232, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 781917, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 746828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 795891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 649894, + "title": "Ensuring effective implementation of EU product efficiency legislation", + "topic": "EE-15-2014" +},{ + "projectID": 819439, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 750478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 711367, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 729922, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 706353, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 950357, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 660981, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707241, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 899546, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 957115, + "title": "Socio-economic research: non-energy impacts and behavioural insights on energy efficiency interventions", + "topic": "LC-SC3-EC-4-2020" +},{ + "projectID": 707807, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 643692, + "title": "Global Alliance for Chronic Diseases: prevention and treatment of type 2 diabetes", + "topic": "HCO-05-2014" +},{ + "projectID": 660191, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 754268, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 647314, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101033714, + "title": "Support to the expansion of global network activities of the Renewable Energy Policy Network for the 21st Century", + "topic": "IBA-SC3-SUPPORT-ENERGY-2020" +},{ + "projectID": 655896, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 710346, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 649669, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2014" +},{ + "projectID": 878880, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 706113, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770302, + "title": "Policy-development in the age of big data: data-driven policy-making, policy-modelling and policy-implementation", + "topic": "CO-CREATION-06-2017" +},{ + "projectID": 952194, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 749353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707562, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 774985, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 955283, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 857801, + "title": "Combining Renewable Technologies for a Renewable District Heating and/or Cooling System", + "topic": "LC-SC3-RES-8-2019" +},{ + "projectID": 742981, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892429, + "title": "Business case for industrial waste heat/cold recovery", + "topic": "LC-SC3-EE-6-2018-2019-2020" +},{ + "projectID": 882747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 847034, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 707706, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 664655, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 657712, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 860364, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 765140, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 658079, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 685436, + "title": "Health", + "topic": "Health" +},{ + "projectID": 727066, + "title": "Multi-stakeholder platform for enhancing youth digital opportunities", + "topic": "REV-INEQUAL-10-2016" +},{ + "projectID": 703225, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700389, + "title": "Crisis management topic 6: Addressing standardisation opportunities in support of increasing disaster resilience", + "topic": "DRS-06-2015" +},{ + "projectID": 722468, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 646435, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 882850, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 798769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741657, + "title": "Participatory research and innovation via Science Shops", + "topic": "SwafS-01-2016" +},{ + "projectID": 101022585, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 818747, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 778196, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 802053, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 727247, + "title": "Solutions to multiple and combined stresses in crop production", + "topic": "SFS-01-2016" +},{ + "projectID": 694995, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 844401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 768815, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 649180, + "title": "Mobilising the network of National Contact Points in Societal Challenge 6", + "topic": "REFLECTIVE-10-2014" +},{ + "projectID": 740543, + "title": "Developing a comprehensive approach to violent radicalization in the EU from early understanding to improving protection", + "topic": "SEC-06-FCT-2016" +},{ + "projectID": 832892, + "title": "IPBES secretariat", + "topic": "IBA-SC5-IPBES-2018" +},{ + "projectID": 955436, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 825546, + "title": "Global Alliance for Chronic Diseases (GACD) - Scaling-up of evidence-based health interventions at population level for the prevention and management of hypertension and/or diabetes", + "topic": "SC1-BHC-16-2018" +},{ + "projectID": 101033819, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-B4E-4-2020" +},{ + "projectID": 689592, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 101036078, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 707099, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 833507, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 799815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101006560, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 767007, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 775225, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 748303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 644114, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 645376, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 674285, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 835678, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824231, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 770975, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 827998, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 736155, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 807613, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101002685, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 851720, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 825328, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 836915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 856075, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806551, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 732410, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 854888, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736205, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 684828, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 829654, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836165, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 828084, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783680, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 733400, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 684021, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 720560, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 644298, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 739685, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 836065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 786669, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 739622, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 641451, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 876696, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855515, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636868, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 730080, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 639270, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 666367, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 762468, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 673801, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 778144, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645101, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 699903, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 711714, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 688797, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 826747, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687220, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2015" +},{ + "projectID": 835740, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 958827, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 868559, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877350, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007350, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 692251, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 711315, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 739601, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 800112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 711559, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 751061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 678151, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 811693, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657639, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 797328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875523, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 665684, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101025257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 745376, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 694883, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 656878, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 834947, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 633261, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 780417, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 656757, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 663008, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 703668, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 957466, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 807316, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 893981, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645372, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 641540, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 772473, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 744332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 733297, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 706871, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 829933, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723174, + "title": "MEXICO: Collaboration on ICT", + "topic": "ICT-38-2016" +},{ + "projectID": 734242, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 823997, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 732223, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 725051, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 811470, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835417, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639961, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 825798, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 864121, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 827234, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101032183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 811220, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 703228, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635342, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 834692, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101025176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754658, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 795833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003666, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 761853, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 724208, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 659994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 746985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 868712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101015756, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "IBA-SC1-CORONAVIRUS-2020-3" +},{ + "projectID": 764698, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 708715, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 658701, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 947975, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101030158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751423, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727689, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 735097, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 805186, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 860055, + "title": "Coordination of marine and maritime research and innovation in the Black Sea", + "topic": "LC-BG-09-2019" +},{ + "projectID": 730799, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 965643, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101023593, + "title": "Produce food ingredients with high nutritional value from aquatic sources", + "topic": "BBI-2020-SO1-F3" +},{ + "projectID": 880911, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711124, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 684026, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015" +},{ + "projectID": 880470, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662538, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 951649, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 734486, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 965671, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 759457, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 728053, + "title": "ERA-NET Cofund on marine technologies", + "topic": "BG-05-2016" +},{ + "projectID": 950964, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 782874, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 756150, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 815059, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828587, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 802223, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 728647, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 823273, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718994, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 877659, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867166, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 736343, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 747102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101005541, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 876799, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738777, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 695094, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 888017, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814437, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 839391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101007578, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 651800, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 778135, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 762892, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 872217, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 862802, + "title": "Food Systems Africa", + "topic": "LC-SFS-34-2019" +},{ + "projectID": 869342, + "title": "Development of commercial activities and services through the use of GEOSS and Copernicus data", + "topic": "SC5-16-2019" +},{ + "projectID": 885537, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851004, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 790835, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 746602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 780058, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 682602, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 656763, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887860, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762187, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 883105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794301, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877262, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882661, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 724289, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 663108, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 827204, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818036, + "title": "Sustainable European aquaculture 4.0: nutrition and breeding", + "topic": "DT-BG-04-2018-2019" +},{ + "projectID": 862252, + "title": "Multi-use of the marine space, offshore and near-shore: pilot demonstrators", + "topic": "BG-05-2019" +},{ + "projectID": 745439, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 883583, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 811628, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870186, + "title": "Support for the preparatory phase for the DEMO Orientated Early Neutron Source IFMIF/DONES", + "topic": "IBA-EURATOM-DONES-2019" +},{ + "projectID": 833573, + "title": "Pan-European networks of practitioners and other actors in the field of security", + "topic": "SU-GM01-2018-2019-2020" +},{ + "projectID": 883522, + "title": "Security for smart and safe cities, including for public spaces", + "topic": "SU-INFRA02-2019" +},{ + "projectID": 945269, + "title": "Optimised use of European research reactors", + "topic": "NFRP-2019-2020-17" +},{ + "projectID": 900014, + "title": "Innovation for Generation II and III reactors", + "topic": "NFRP-2019-2020-04" +},{ + "projectID": 828840, + "title": "Blockchain and distributed ledger technologies for SMEs", + "topic": "INNOSUP-03-2018" +},{ + "projectID": 848028, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 764690, + "title": "Highly flexible and efficient fossil fuel power plants", + "topic": "LCE-28-2017" +},{ + "projectID": 779990, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 779790, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 864334, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 871498, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 875629, + "title": "Strengthening EU materials technologies for non-automotive battery storage (RIA)", + "topic": "LC-BAT-2-2019" +},{ + "projectID": 825183, + "title": "EU-US collaboration on NGI", + "topic": "ICT-31-2018-2019" +},{ + "projectID": 951981, + "title": "Big Data Innovation Hubs", + "topic": "DT-ICT-05-2020" +},{ + "projectID": 864374, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 773505, + "title": "Demonstration of system integration with smart transmission grid and storage technologies with increasing share of renewables", + "topic": "LCE-04-2017" +},{ + "projectID": 882828, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 899671, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 948932, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 893325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714487, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 746297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 836146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 818496, + "title": "Building modern rural policies on long-term visions and societal engagement", + "topic": "RUR-01-2018-2019" +},{ + "projectID": 839633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695985, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2015" +},{ + "projectID": 657357, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818737, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 739784, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 647723, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 818187, + "title": "Climate-smart and resilient farming", + "topic": "LC-SFS-19-2018-2019" +},{ + "projectID": 797684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702612, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101020611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 850530, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 765262, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 742743, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 823728, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 876548, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 756439, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 839225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743077, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 684088, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 834742, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 867377, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 836542, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949811, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 794842, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 817799, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 677368, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 639220, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 948141, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 890964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 718717, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 877455, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647342, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 715502, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 771402, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 805359, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 681870, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 879757, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 648135, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101029189, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647100, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 679689, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 660914, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 791536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802952, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 856526, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 832332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001604, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 741728, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101001515, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 758558, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 863691, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 659420, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 866236, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 659653, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758935, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 727305, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 639792, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101002955, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 670743, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 786532, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 725636, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 966735, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 758572, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 882848, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 747914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 764531, + "title": "Measuring, monitoring and controlling the potential risks of subsurface operations related to CCS and unconventional hydrocarbons", + "topic": "LCE-27-2017" +},{ + "projectID": 963580, + "title": "Next generation and realisation of battery packs for BEV and PHEV", + "topic": "LC-BAT-10-2020" +},{ + "projectID": 772259, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 792876, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 790736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655524, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 810144, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 657111, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656900, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101003295, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 725521, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 842708, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 757720, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 702386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758759, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 656024, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 804416, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 665468, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 753906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660684, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 965280, + "title": "Addressing low vaccine uptake", + "topic": "SC1-BHC-33-2020" +},{ + "projectID": 794680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 831877, + "title": "Aerospace standard Lightweight SSPC for High voltage >1kA application.", + "topic": "JTI-CS2-2018-CfP08-LPA-01-56" +},{ + "projectID": 842096, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 654609, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 716655, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 634809, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 694651, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 851931, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 800988, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 722023, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 793128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 821023, + "title": "Quick Disconnect System", + "topic": "JTI-CS2-2017-CfP07-LPA-01-44" +},{ + "projectID": 101022295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949289, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 636308, + "title": "Seamless air mobility", + "topic": "MG-1.3-2014" +},{ + "projectID": 715626, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 779263, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 831966, + "title": "Oil Transfer Bearing for Advanced Pitch Change Mechanism", + "topic": "JTI-CS2-2018-CfP08-LPA-01-49" +},{ + "projectID": 821500, + "title": "Development of power electronic technologies for >1kV aerospace applications", + "topic": "JTI-CS2-2017-CfP07-LPA-01-42" +},{ + "projectID": 790240, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 812753, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101000478, + "title": "Strengthening the European agro-ecological research and innovation ecosystem", + "topic": "FNR-01-2020" +},{ + "projectID": 703929, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 887398, + "title": "Develop bio-based high-performance materials for various and demanding applications", + "topic": "BBI-2019-SO3-R10" +},{ + "projectID": 803140, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 664388, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 773436, + "title": "Alternative production system to address anti-microbial drug usage, animal welfare and the impact on health", + "topic": "SFS-46-2017" +},{ + "projectID": 634179, + "title": "Native and alien pests in agriculture and forestry", + "topic": "SFS-03a-2014" +},{ + "projectID": 838433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730988, + "title": "Support to policies and international cooperation for e-infrastructures", + "topic": "INFRASUPP-03-2016" +},{ + "projectID": 101030187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 690972, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 746516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702586, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 844167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 635478, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 115890, + "title": "Enabling Platform on Medicines Adaptive Pathways to Patients", + "topic": "IMI2-2015-04-01" +},{ + "projectID": 787419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702410, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 788945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 887857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700525, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 886540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870644, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 101000812, + "title": "FOOD 2030 - Empowering cities as agents of food system transformation", + "topic": "CE-FNR-07-2020" +},{ + "projectID": 871703, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 773718, + "title": "Innovations in plant protection", + "topic": "SFS-17-2017" +},{ + "projectID": 952600, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 862448, + "title": "Building modern rural policies on long-term visions and societal engagement", + "topic": "RUR-01-2018-2019" +},{ + "projectID": 727201, + "title": "Promoting food and nutrition security and sustainable agriculture in Africa: the role of innovation", + "topic": "SFS-42-2016" +},{ + "projectID": 691473, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 657630, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682032, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 642574, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 860800, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 683164, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 824996, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 825512, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 825246, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 656984, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 793405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034761, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 966846, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 724480, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 660508, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101034661, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 670557, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 656598, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 657596, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768598, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101025424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640537, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 792676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824522, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 101017526, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 101006251, + "title": "Bottom-up approach to build SwafS knowledge base", + "topic": "SwafS-31-2020" +},{ + "projectID": 725349, + "title": "Contemporary radicalisation trends and their implications for Europe", + "topic": "REV-INEQUAL-02-2016" +},{ + "projectID": 665851, + "title": "Impact of gender diversity on Research & Innovation", + "topic": "GERI-2-2014" +},{ + "projectID": 101035805, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 818352, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 727483, + "title": "Support to the energy stakeholders to contribute to the SET-Plan", + "topic": "LCE-36-2016-2017" +},{ + "projectID": 741856, + "title": "The Ethics of informed consent in novel treatment including a gender perspective", + "topic": "SwafS-17-2016" +},{ + "projectID": 759903, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 746168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 705697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 825227, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 780262, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 843115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702884, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 874796, + "title": "12. Innovative Enterprise Week 2019", + "topic": "H2020-ARF-2018-2020-10" +},{ + "projectID": 101031566, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724914, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 734645, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 660643, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833132, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 788986, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 740507, + "title": "EU Cooperation and International Dialogues in Cybersecurity and Privacy Research and Innovation", + "topic": "DS-05-2016" +},{ + "projectID": 818717, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 844113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 819006, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101020245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949645, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101028546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 818791, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 890861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694732, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 825749, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 751924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 794780, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 639192, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 833120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 745896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 773864, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 755053, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 853272, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 861957, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 677490, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 896185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 785087, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 741640, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 862663, + "title": "Innovative and citizen-driven food system approaches in cities", + "topic": "CE-SFS-24-2019" +},{ + "projectID": 101033878, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 648429, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 802441, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101006430, + "title": "Responsible Open Science: an ethics and integrity perspective", + "topic": "SwafS-30-2020" +},{ + "projectID": 872522, + "title": "Consolidating and expanding the knowledge base on citizen science", + "topic": "SwafS-17-2019" +},{ + "projectID": 825171, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 722749, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 101020574, + "title": "Developing a research roadmap regarding Artificial Intelligence in support of Law Enforcement", + "topic": "SU-AI01-2020" +},{ + "projectID": 787289, + "title": "Putting Open Science into action", + "topic": "SwafS-10-2017" +},{ + "projectID": 792782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 873125, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 865222, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 745869, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648427, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 726114, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101000640, + "title": "FOOD 2030 - Empowering cities as agents of food system transformation", + "topic": "CE-FNR-07-2020" +},{ + "projectID": 784247, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 818523, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 817834, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 891052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101018743, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 681415, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 838161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 808373, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 881221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885478, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 893304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853608, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702083, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772353, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 892204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101027860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 886026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 786641, + "title": "The ethical dimensions of IT technologies: a European perspective focusing on security and human rights aspects", + "topic": "SwafS-22-2017" +},{ + "projectID": 840454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 885698, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101036137, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 947879, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101017229, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 787546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 842085, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677952, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 892034, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 892560, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 794938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851393, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655541, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818748, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 835051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 663486, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 885924, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 965315, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 101032594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 785033, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 826010, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 796053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 659216, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656377, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818728, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 696294, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 665825, + "title": "Pan-European public outreach: exhibitions and science cafés engaging citizens in science", + "topic": "ISSI-1-2014" +},{ + "projectID": 833088, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 786314, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 758907, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101038047, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 754059, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 708008, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 779282, + "title": "Implementing the Strategic Research Agenda on Personalised Medicine", + "topic": "SC1-HCO-03-2017" +},{ + "projectID": 841128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 824550, + "title": "Mobilising Research Excellence in EU Outermost Regions (OR)", + "topic": "SwafS-22-2018" +},{ + "projectID": 645000, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 101036119, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 892029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837537, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740146, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 750483, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101001410, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 819353, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 770922, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 644721, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 948390, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101000014, + "title": "Conference 'A citizen science decade (2020-2030) in support to the Sustainable Development Goals'", + "topic": "IBA-SWAFS-Citizen-2019" +},{ + "projectID": 101036038, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 757535, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101008184, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101002440, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 669666, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 703235, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 741166, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 643955, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 839419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792668, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 759820, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 732027, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 645043, + "title": "Human-centric Digital Age", + "topic": "ICT-31-2014" +},{ + "projectID": 701747, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 692523, + "title": "Encouraging the research and innovation cooperation between the Union and selected regional partners – proposals targeting Southern Mediterranean Neighbourhood, Eastern Partnership", + "topic": "INT-02-2015" +},{ + "projectID": 885977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 883280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 821105, + "title": "Supporting the development of climate policies to deliver on the Paris Agreement, through Integrated Assessment Models (IAMs)", + "topic": "LC-CLA-01-2018" +},{ + "projectID": 797802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 785277, + "title": "Support to the 10th Conference on the European Strategic Technology Plan (SET Plan) 2017", + "topic": "IBA-ENERGY-SETPLAN-2017" +},{ + "projectID": 836888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803208, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 716849, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 725883, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 840302, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844895, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101006325, + "title": "Hands-on citizen science and frugal innovation", + "topic": "SwafS-27-2020" +},{ + "projectID": 700367, + "title": "Law Enforcement capabilities 2: Detection and analysis of terrorist-related content on the Internet", + "topic": "FCT-06-2015" +},{ + "projectID": 840765, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101036106, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 851423, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 957819, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 883490, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 644015, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 687983, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 721999, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 898645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870621, + "title": "Societal challenges and the arts", + "topic": "TRANSFORMATIONS-17-2019" +},{ + "projectID": 101016888, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 733571, + "title": "EU-China cooperation on sustainable urbanisation", + "topic": "ENG-GLOBALLY-08-2016-2017" +},{ + "projectID": 953040, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 962553, + "title": "Developing deliberative and participatory democracies through experimentation", + "topic": "GOVERNANCE-21-2020" +},{ + "projectID": 770376, + "title": "European cultural heritage, access and analysis for a richer interpretation of the past.", + "topic": "CULT-COOP-09-2017" +},{ + "projectID": 101007666, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 856455, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 633263, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 891091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772354, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 872687, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 897686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 824753, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2018" +},{ + "projectID": 101035801, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 896536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955391, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 795114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 872500, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 101019884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 770492, + "title": "Applied co-creation to deliver public services", + "topic": "CO-CREATION-04-2017" +},{ + "projectID": 817914, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 957442, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 661659, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656480, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 840033, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101020403, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 739832, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 891456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101020076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787504, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 752199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677502, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 953360, + "title": "EUCYS 2020", + "topic": "IBA-SWFS-EUCYS-2020" +},{ + "projectID": 101027095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835193, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 702875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 726206, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 778044, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 647272, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 896918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101018513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 818908, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 683018, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 898910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001002, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 787671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 709185, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852732, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 892782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 698606, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 861599, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 895313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 947779, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 796098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 884237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702511, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101029971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788476, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 792583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 788205, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 657512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 844970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 798118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 842320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833366, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 885285, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 747881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 832428, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 896741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 716542, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 797586, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949424, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 795823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 753565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841844, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 888121, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759677, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 845889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101001710, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 887605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654426, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 792225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 633197, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 771383, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 705090, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 955378, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 796718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 954782, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659241, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 853179, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 898325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787935, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101038069, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 817911, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 853566, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101029720, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715021, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 640627, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101023745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948152, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 897907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 670628, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 751356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852448, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 659660, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884910, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 699899, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002816, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101019509, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 865817, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 804352, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 789632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 842046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701538, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101030908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 633406, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 750263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 730527, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 795465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 659644, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656397, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101022550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772070, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 742635, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101024090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 809994, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 704716, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746033, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656000, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 863490, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 867413, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 101028821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655659, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 851132, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101036006, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 724857, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 897393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660528, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 692152, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 723718, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 841174, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863650, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 834195, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 896925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851607, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101031847, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802700, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 863393, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 894643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 692939, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 890522, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677898, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 798837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101036039, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 949538, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101000296, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 948051, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 842094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 770017, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 746451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659625, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 869595, + "title": "Transforming historic urban areas and/or cultural landscapes into hubs of entrepreneurship and social and cultural integration", + "topic": "SC5-20-2019" +},{ + "projectID": 845625, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804151, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101032917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 801199, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 708740, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655921, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645758, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 732794, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 813232, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 851634, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 693423, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101021330, + "title": "Chemicals: intelligence, detection, forensics", + "topic": "SU-FCT04-2020" +},{ + "projectID": 862100, + "title": "Open Innovation Test Beds for nano-enabled surfaces and membranes (IA)", + "topic": "DT-NMBP-03-2019" +},{ + "projectID": 641607, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 949682, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 865932, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 773181, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101001677, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 644031, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 828931, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 742098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742754, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 819174, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 813258, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 754475, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 824270, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 655109, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 964414, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 852633, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 786976, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 740610, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 837327, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899366, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 875533, + "title": "An inclusive digitally interconnected transport system meeting citizens' needs", + "topic": "MG-4-5-2019" +},{ + "projectID": 757259, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 637851, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101028785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 648298, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101026442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948764, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 890972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 886295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694583, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101024634, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 882549, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 724649, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101025015, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637692, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101019086, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 744400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 754506, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 786460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694817, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 701561, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 793736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 672246, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 853517, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 846129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 887121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654825, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 647963, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 787015, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 771766, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101032546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658813, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019965, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101020037, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 882894, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 750379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 646802, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 747645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 778076, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 706016, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101030035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018777, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101031845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705709, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 705204, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 870954, + "title": "Social platform on the impact assessment and the quality of interventions in European historical environment and cultural heritage sites", + "topic": "TRANSFORMATIONS-16-2019" +},{ + "projectID": 840686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681657, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101030199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871370, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 704335, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819143, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101001478, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 681840, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 802752, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 724972, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 695481, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101023548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 796193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 947606, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 654796, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 792534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 948403, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 753304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 837297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787638, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 687662, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 948678, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 639363, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 756431, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 893142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714033, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 891056, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867435, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 101003389, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 793583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 693349, + "title": "Emergence and transmission of European cultural heritage and Europeanisation", + "topic": "REFLECTIVE-2-2015" +},{ + "projectID": 894959, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 816070, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864174, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 747591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700759, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865787, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 833834, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 948150, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101026166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842070, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 682288, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 895726, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681664, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 702705, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758502, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101038090, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 889764, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 819892, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 896323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 759829, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 658088, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 115985, + "title": "Evolving models of patient engagement and access for earlier identification of Alzheimer’s disease: Phased expansion study", + "topic": "IMI2-2015-05-05" +},{ + "projectID": 949639, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 727040, + "title": "Virtual museums and social platform on European digital heritage, memory, identity and cultural interaction.", + "topic": "CULT-COOP-08-2016" +},{ + "projectID": 682675, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 742631, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101001717, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101032730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885120, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 682081, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 754299, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 950287, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101018750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 679436, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 715423, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 954321, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660707, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752790, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 802918, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101026146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819960, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 682313, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 657370, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884778, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 799544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949577, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 740246, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 833143, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834514, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 682115, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 716467, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 660143, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703595, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 844152, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895174, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706198, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818854, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 794064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772332, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101026645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 950513, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 819404, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 840228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758099, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 723710, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 657877, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 873466, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644704, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 683928, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 101021894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 765400, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 803421, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 740472, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 706136, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101001592, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 701478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681489, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 831335, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 681027, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 706432, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 818070, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101028507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 765057, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101032712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019164, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 681018, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101019707, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 739572, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 803958, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 804685, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 753398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 853230, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 946055, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 840562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 853413, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 896014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658418, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693594, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 948561, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 638364, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 688835, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 956857, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 734211, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101023220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 700512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 723037, + "title": "Innovation awards for students and researchers in the context of the Transport Research Arena conference - TRA 2018", + "topic": "MG-8.6-2016" +},{ + "projectID": 850706, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 798076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795539, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758892, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101026217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002697, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 818996, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 864912, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 835489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 740131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709443, + "title": "Pan-European public outreach: exhibitions and science cafés engaging citizens in science", + "topic": "ISSI-1-2015" +},{ + "projectID": 646951, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 656203, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 750254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638653, + "title": "Outreach through education", + "topic": "COMPET-10-2014" +},{ + "projectID": 101032236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101005177, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 757601, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757923, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 797880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758834, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 875698, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 723868, + "title": "Highly efficient insulation materials with improved properties", + "topic": "EEB-01-2016" +},{ + "projectID": 724880, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 818085, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 759390, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101001594, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 694920, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 834999, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 879778, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 819752, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 633635, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 753796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 771550, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 742816, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 885418, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 740558, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 682417, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 863981, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 824007, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 780143, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 725010, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 638605, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 752472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884598, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101006593, + "title": "Improving impact and broadening stakeholder engagement in support of transport research and innovation", + "topic": "MG-4-10-2020" +},{ + "projectID": 833135, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 649020, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 644000, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 702584, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802226, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 670239, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 674943, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 948548, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 800004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 770939, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 694767, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 664584, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 101022757, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715282, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 838703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 640213, + "title": "Innovation awards for students and researchers in the context of the Transport Research Arena conference - TRA 2016", + "topic": "MG-9.7-2014" +},{ + "projectID": 796652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862410, + "title": "Materials, manufacturing processes and devices for organic and large area electronics (IA)", + "topic": "DT-NMBP-18-2019" +},{ + "projectID": 824293, + "title": "Support for dissemination events in the field of Transport Research", + "topic": "MG-4-4-2018-2019" +},{ + "projectID": 956851, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 776691, + "title": "Novel in-situ observation systems", + "topic": "SC5-18-2017" +},{ + "projectID": 862756, + "title": "Integrated water management in small agricultural catchments", + "topic": "SFS-23-2019" +},{ + "projectID": 796220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754704, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 949670, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 886793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659338, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 766417, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101017578, + "title": "Accelerating the uptake of computer simulations for testing medicines and medical devices", + "topic": "SC1-DTH-06-2020" +},{ + "projectID": 789270, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 848223, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 949367, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852332, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 843794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714712, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 811312, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 832501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 866400, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 657522, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707295, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841781, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101035803, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 838196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 956496, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101036814, + "title": "Developing end-user products and services for all stakeholders and citizens supporting climate adaptation and mitigation", + "topic": "LC-GD-9-2-2020" +},{ + "projectID": 715173, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 644902, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 786379, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 669387, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 821870, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 778136, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 700748, + "title": "Critical Infrastructure Protection topic 2: Demonstration activity on tools for adapting building and infrastructure standards and design methodologies in vulnerable locations in the case of natural or man-originated catastrophes", + "topic": "DRS-13-2015" +},{ + "projectID": 802862, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 795475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 872767, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 692466, + "title": "Smart production", + "topic": "ECSEL-14-2015" +},{ + "projectID": 852560, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 964934, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101030608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 852927, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655844, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 709192, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101038099, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 657054, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654339, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 758329, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101025651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714968, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 709114, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801770, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 951974, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 825404, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 695197, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 701254, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101028468, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 638656, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 852236, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 947715, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101023873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723970, + "title": "Stimulating European research and development for the implementation of future road transport technologies", + "topic": "GV-11-2016" +},{ + "projectID": 773660, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101031688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 709129, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 682905, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 953432, + "title": "Improving road safety by effectively monitoring working patterns and overall fitness of drivers", + "topic": "MG-2-12-2020" +},{ + "projectID": 730014, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 677819, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101002463, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 700176, + "title": "Information driven Cyber Security Management", + "topic": "DS-04-2015" +},{ + "projectID": 802681, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 666053, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 865870, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 886273, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714692, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 893012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101007633, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 687591, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 835997, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 738144, + "title": "Advanced Health Monitoring System for next generation materials", + "topic": "JTI-CS2-2016-CFP03-FRC-02-15" +},{ + "projectID": 644267, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 824825, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101034604, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101027187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 959521, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850641, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 751047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 845486, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803047, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 796048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 804273, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 656129, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 890711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101018193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647471, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 689444, + "title": "Self management of health and disease and decision support systems based on predictive computer modelling used by the patient him or herself", + "topic": "PHC-28-2015" +},{ + "projectID": 644371, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 840894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659593, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 969201, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 716559, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 648295, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 748006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 968614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868058, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001976, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 844947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 946528, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949202, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 818751, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 818761, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 741121, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 788715, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 898860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 767176, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 946372, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 780701, + "title": "Cybersecurity PPP: Cryptography", + "topic": "DS-06-2017" +},{ + "projectID": 788185, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 786734, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101002845, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 844161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 834266, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101001310, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 820505, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 101031415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714235, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101020788, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101033521, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 748921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742559, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 898125, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023289, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001005, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001250, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 637232, + "title": "Integrated Process Control", + "topic": "SPIRE-01-2014" +},{ + "projectID": 734541, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 945764, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648229, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 820254, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 871764, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 751859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 787515, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 788932, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 805080, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 707723, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706839, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 776311, + "title": "High speed data chain", + "topic": "COMPET-3-2017" +},{ + "projectID": 684016, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 677458, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 747927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 685196, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 825884, + "title": "Building international efforts on population and patient cohorts", + "topic": "SC1-HCO-09-2018" +},{ + "projectID": 809965, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 716971, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 683830, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 807273, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 731601, + "title": "Big data PPP: privacy-preserving big data technologies", + "topic": "ICT-18-2016" +},{ + "projectID": 731818, + "title": "Initial Trajectory Information Sharing", + "topic": "SESAR.IR-VLD.Wave1-27-2015" +},{ + "projectID": 670325, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 867316, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715043, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 707932, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 822014, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 777549, + "title": "Platform-driven e-infrastructure innovation", + "topic": "EINFRA-21-2017" +},{ + "projectID": 662222, + "title": "ECSEL Key Applications and Essential Technologies (RIA)", + "topic": "ECSEL-01-2014" +},{ + "projectID": 675087, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 707522, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 765068, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 641388, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 661796, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-02-2014" +},{ + "projectID": 790062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 665044, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 704192, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 680708, + "title": "New tools and methodologies to reduce the gap between predicted and actual energy performances at the level of buildings and blocks of buildings", + "topic": "EeB-07-2015" +},{ + "projectID": 681456, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 691154, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 731945, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 101001794, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 776622, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 655283, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771391, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 724306, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 687289, + "title": "Stimulating wider research use of Copernicus Sentinel Data", + "topic": "EO-2-2015" +},{ + "projectID": 788535, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 679627, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101025482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019547, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101002188, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 653019, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 711190, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 681839, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 847873, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 643924, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 885689, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 679425, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 865170, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 844296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 855978, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644859, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 798824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 737576, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 774024, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 675512, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 870377, + "title": "Advanced research in Near Earth Objects (NEOs) and new payload technologies for planetary defence", + "topic": "SU-SPACE-23-SEC-2019" +},{ + "projectID": 725509, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 809604, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 715605, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679531, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 658581, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 732204, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2016" +},{ + "projectID": 687414, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 784979, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 770652, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 780251, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 681652, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682117, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101034366, + "title": "Returning Clinical Trial Data to study participants within a GDPR compliant and approved ethical framework", + "topic": "IMI2-2020-23-01" +},{ + "projectID": 895286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 857420, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 795846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815141, + "title": "Cloud, IoT and AI technologies", + "topic": "EUK-01-2018" +},{ + "projectID": 877624, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 638765, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 802822, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 653212, + "title": "Risk management and assurance models", + "topic": "DS-06-2014" +},{ + "projectID": 762873, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 822897, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657359, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 836831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825502, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 891685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 688038, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 673601, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 875905, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806628, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 725490, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 761802, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 687316, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2015" +},{ + "projectID": 666741, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 101004253, + "title": "Satellite communication technologies", + "topic": "SPACE-29-TEC-2020" +},{ + "projectID": 682724, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 835929, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654682, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 637632, + "title": "In-Orbit demonstration/Validation (IOD/IOV)", + "topic": "COMPET-05-2014" +},{ + "projectID": 854891, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862528, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 815693, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816552, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 821036, + "title": "Digital solutions for water: linking the physical and digital world for water solutions", + "topic": "SC5-11-2018" +},{ + "projectID": 640143, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-01-2014" +},{ + "projectID": 645028, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 776335, + "title": "EGNSS professional applications", + "topic": "GALILEO-3-2017" +},{ + "projectID": 663536, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 697172, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 799873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 716792, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 840621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646740, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 867436, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 792945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 822927, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949916, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101019310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 650447, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 899535, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 672638, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 796024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101022905, + "title": "Demonstration of innovative and sustainable hydropower solutions targeting unexplored small-scale hydropower potential in Central Asia", + "topic": "LC-SC3-RES-34-2020" +},{ + "projectID": 947852, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 754682, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 863473, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 893417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963937, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 642014, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 716539, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 772579, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101023067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 814106, + "title": "Open Innovation Test Beds for Characterisation (IA)", + "topic": "DT-NMBP-07-2018" +},{ + "projectID": 795905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646159, + "title": "Industrial-scale production of nanomaterials for printing applications", + "topic": "NMP-05-2014" +},{ + "projectID": 655176, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824410, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 837276, + "title": "Electrochemical processes for bio-based monomers and polymers", + "topic": "BBI.2018.SO2.R7" +},{ + "projectID": 660489, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002212, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 772103, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 832045, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 801180, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 874671, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 897894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 722148, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 796206, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 752747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 858753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647073, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101023589, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649101, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 708658, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101026227, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 662455, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 855463, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 654513, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 856871, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 750907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 737978, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 949806, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101025502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 810425, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 749719, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 845391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825076, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 798961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 829040, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 810115, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 797914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 951730, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 839310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704333, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 741773, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 656579, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 872648, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 655698, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875555, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 895792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716024, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 642139, + "title": "Mineral deposits of public importance", + "topic": "SC5-13a-2014" +},{ + "projectID": 896310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 753670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101018153, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 715271, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 843212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101019835, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 843265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754203, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 818795, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 872328, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 778188, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101036166, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 676452, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 954638, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 101016691, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 101032450, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 714866, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 752297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 697081, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 757490, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 729199, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 795417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 798917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840116, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 748364, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 952981, + "title": "Biological scaffolds for tissue regeneration and repair (RIA)", + "topic": "NMBP-21-2020" +},{ + "projectID": 699995, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864669, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 672757, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 793247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703415, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 857287, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 898858, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734921, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 893135, + "title": "Decarbonisation of the EU building stock: innovative approaches and affordable solutions changing the market for buildings renovation", + "topic": "LC-SC3-EE-1-2018-2019-2020" +},{ + "projectID": 843717, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 952033, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 805997, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 664559, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 948102, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101002057, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 947454, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767285, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 724881, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101028762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 854646, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952347, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 795318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877901, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957127, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 805055, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 736357, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 660757, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 775571, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 674282, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 824138, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855512, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 747734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721432, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 839111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774012, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 764513, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 898530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637674, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 708138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 670629, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101026595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948545, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 657605, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 950159, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 752489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788240, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 857375, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 799734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754490, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 758898, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 701983, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101028370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 646927, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 753441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 667510, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 677804, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 798181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 753896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867458, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 887955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 864750, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 771863, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101033485, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101034644, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 678578, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 862149, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 755466, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 865437, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 961205, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660230, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 750445, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652986, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 789548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692952, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 759659, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101021218, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 837228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 718965, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 816071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785367, + "title": "Development and deployment of PLM Tools for A/C Ground Functional testing with Eco-design criteria.", + "topic": "JTI-CS2-2017-CFP06-AIR-02-45" +},{ + "projectID": 785412, + "title": "Electrocoating process for Cr6-free surface treatment of aluminium parts", + "topic": "JTI-CS2-2017-CFP06-SYS-03-10" +},{ + "projectID": 783117, + "title": "Network collaborative Management", + "topic": "SESAR-VLD1-03-2016" +},{ + "projectID": 755399, + "title": "Multi-functional cabin rest area", + "topic": "JTI-CS2-2016-CFP04-AIR-01-24" +},{ + "projectID": 816435, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892869, + "title": "Innovation in Airport Operation", + "topic": "SESAR-ER4-13-2019" +},{ + "projectID": 821315, + "title": "Innovative design for reliable and low weight power gearbox planet bearings", + "topic": "JTI-CS2-2017-CfP07-LPA-01-36" +},{ + "projectID": 864977, + "title": "High performance gas expansion system for halon-free cargo hold fire suppression system.", + "topic": "JTI-CS2-2018-CFP09-LPA-02-29" +},{ + "projectID": 799902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731826, + "title": "SWIM Infrastructures", + "topic": "SESAR.IR-VLD.Wave1-20-2015" +},{ + "projectID": 785341, + "title": "Low cost optical wave guides for damage detection including analysis and aircraft data transfer related to aircraft functional needs with self-testing connection", + "topic": "JTI-CS2-2017-CFP06-AIR-02-43" +},{ + "projectID": 791438, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101008005, + "title": "Concept for Pilot State Monitoring system operation in commercial aviation", + "topic": "JTI-CS2-2020-CFP11-LPA-03-19" +},{ + "projectID": 874464, + "title": "PJ.10 W2 Separation Management and Controller Tools", + "topic": "SESAR-IR-VLD-WAVE2-10-2019" +},{ + "projectID": 785418, + "title": "IP Turbine Rear Stages Aero/Noise Rigs", + "topic": "JTI-CS2-2017-CFP06-ENG-03-15" +},{ + "projectID": 785300, + "title": "Optimized cockpit windshields for large diameter business aircrafts", + "topic": "JTI-CS2-2017-CFP06-AIR-01-28" +},{ + "projectID": 820883, + "title": "Improvement of high speed low pressure turbine performance through reduction of secondary effects", + "topic": "JTI-CS2-2017-CfP07-ENG-01-23" +},{ + "projectID": 812904, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 831795, + "title": "Design and development of a long stroke Piezo Electric Actuator", + "topic": "JTI-CS2-2018-CfP08-SYS-02-48" +},{ + "projectID": 754989, + "title": "Smart amplifier and a control box for fluidic actuators", + "topic": "JTI-CS2-2016-CFP04-LPA-01-25" +},{ + "projectID": 738043, + "title": "Low Power De-Icing System suitable for Small Aircrafts", + "topic": "JTI-CS2-2016-CFP03-SYS-03-04" +},{ + "projectID": 894593, + "title": "U-space", + "topic": "SESAR-ER4-31-2019" +},{ + "projectID": 699282, + "title": "Automation in ATM", + "topic": "Sesar-01-2015" +},{ + "projectID": 717233, + "title": "Powered WT model design and manufacturing of the FTB2 aircraft configuration for aerodynamic tests in wind tunnel at low and high Reynolds number", + "topic": "JTI-CS2-2015-CFP02-REG-02-02" +},{ + "projectID": 701693, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 821328, + "title": "Innovative Primary and Secondary Electrical Distribution Network for Regional A/C", + "topic": "JTI-CS2-2017-CfP07-REG-01-15" +},{ + "projectID": 101017682, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 865416, + "title": "Audio Communication Manager for Disruptive Cockpit demonstrator", + "topic": "JTI-CS2-2018-CFP09-LPA-03-17" +},{ + "projectID": 831825, + "title": "Development of Measurement Techniques for Visualisation and Evaluation of Reverse Flow Interactions with Fan", + "topic": "JTI-CS2-2018-CfP08-LPA-01-54" +},{ + "projectID": 785318, + "title": "Auto testing technologies and more automated factories for Aircraft validation test process", + "topic": "JTI-CS2-2017-CFP06-AIR-02-46" +},{ + "projectID": 831841, + "title": "New grip generation for active inceptor", + "topic": "JTI-CS2-2018-CfP08-SYS-02-47" +},{ + "projectID": 672032, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 849296, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 820884, + "title": "Ergonomic impact and new functions induced by Active Inceptor integration in cockpits", + "topic": "JTI-CS2-2017-CfP07-SYS-02-38" +},{ + "projectID": 821135, + "title": "Advanced Load Sensing technology for aerospace applications", + "topic": "JTI-CS2-2017-CfP07-SYS-02-36" +},{ + "projectID": 714917, + "title": "Touchscreen control panel for critical system management functions", + "topic": "JTI-CS2-2015-CFP02-LPA-03-04" +},{ + "projectID": 775768, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 816090, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 871259, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 754576, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 687352, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 101024726, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 678727, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 950998, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 821467, + "title": "Breakthrough design concept solutions and technologies for Regional Aircraft Cabin Interiors innovative configuration", + "topic": "JTI-CS2-2017-CfP07-AIR-02-59" +},{ + "projectID": 717239, + "title": "Engine Mounting System (EMS) for Ground Test Turboprop Engine Demonstrator", + "topic": "JTI-CS2-2015-CFP02-ENG-01-04" +},{ + "projectID": 652101, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 785289, + "title": "Adjustable high loaded rod", + "topic": "JTI-CS2-2017-CFP06-AIR-02-44" +},{ + "projectID": 861635, + "title": "Innovative applications of drones for ensuring safety in transport", + "topic": "MG-2-8-2019" +},{ + "projectID": 666793, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 736588, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 700967, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 864475, + "title": "Virtual Testing Based Certification", + "topic": "JTI-CS2-2018-CfP09-SYS-03-22" +},{ + "projectID": 874476, + "title": "VLD.02 W2 Airport Surface Management, Airport Safety Nets and ATSAW", + "topic": "SESAR-IR-VLD-WAVE2-15-2019" +},{ + "projectID": 763719, + "title": "Ground-based technology", + "topic": "RPAS-04" +},{ + "projectID": 762692, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 665477, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 686827, + "title": "Cost Reduction On Composite Structure Assembly – Blind fastener inspection technology for quality control", + "topic": "JTI-CS2-2014-CFP01-LPA-02-01" +},{ + "projectID": 945500, + "title": "Small Air Transport (SAT) - GAM 2018", + "topic": "CS2-GAM-2020-SAT" +},{ + "projectID": 892036, + "title": "Innovation in Airport Operation", + "topic": "SESAR-ER4-13-2019" +},{ + "projectID": 831832, + "title": "VHCF material model for case hardened gear steels for application in an epicyclic power gearbox", + "topic": "JTI-CS2-2018-CfP08-ENG-03-24" +},{ + "projectID": 831848, + "title": "Innovative NOx Reduction Technologies", + "topic": "JTI-CS2-2018-CFP08-THT-01" +},{ + "projectID": 821048, + "title": "Evaluation of the benefits of a laminar nacelle and a laminar HTTP installed on a bizjet configuration", + "topic": "JTI-CS2-2017-CfP07-AIR-01-31" +},{ + "projectID": 864551, + "title": "Conceptual Design of a 19-passenger Commuter Aircraft with near zero emissions", + "topic": "JTI-CS2-2018-CFP09-THT-03" +},{ + "projectID": 831934, + "title": "Design and manufacturing of a large-scale HLFC wing model for a transonic WTT", + "topic": "JTI-CS2-2018-CfP08-LPA-01-51" +},{ + "projectID": 820835, + "title": "Skin Friction measurements on a real aircraft and Fiber-optics based pressure measurements for aircraft applications", + "topic": "JTI-CS2-2017-CfP07-LPA-01-39" +},{ + "projectID": 717192, + "title": "Erosion-resistant functional coatings", + "topic": "JTI-CS2-2015-CFP02-AIR-01-10" +},{ + "projectID": 820531, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 821435, + "title": "Innovative HPC Flow Treatment Technologies: Design & Experimental Validation Using Advanced Measurement Techniques", + "topic": "JTI-CS2-2017-CfP07-ENG-01-28" +},{ + "projectID": 882646, + "title": "Verification of advanced simplified HLFC concept with variable porosity", + "topic": "JTI-CS2-2019-CFP10-AIR-01-43" +},{ + "projectID": 821128, + "title": "Development of methodology and tools based on advanced statistics applied to Electro Magnetic Compatibility analysis of cable harnesses in aeronautics", + "topic": "JTI-CS2-2017-CfP07-SYS-02-41" +},{ + "projectID": 831809, + "title": "Laminar Flow robustness and Load control effectiveness evaluation for a Regional Turboprop wing", + "topic": "JTI-CS2-2018-CfP08-REG-03-01" +},{ + "projectID": 867637, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864521, + "title": "Overall Air Transport System Vehicle Scenarios", + "topic": "JTI-CS2-2018-CfP09-TE2-01-08" +},{ + "projectID": 821093, + "title": "Innovative acoustic fan frame liners technologies for UHBR", + "topic": "JTI-CS2-2017-CfP07-ENG-01-26" +},{ + "projectID": 756081, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 714486, + "title": "Passive thermo-acoustic insulation for small aircraft.", + "topic": "JTI-CS2-2015-CFP02-SYS-03-02" +},{ + "projectID": 717173, + "title": "Eco Design : Optimization of SAA chromium free sealing process", + "topic": "JTI-CS2-2015-CFP02-SYS-02-12" +},{ + "projectID": 863839, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 861438, + "title": "Advancements in aerodynamics and innovative propulsion systems for quieter and greener aircrafts", + "topic": "LC-MG-1-5-2019" +},{ + "projectID": 685482, + "title": "Environmental Friendly Fire Suppression", + "topic": "JTI-CS2-2014-CFP01-LPA-02-05" +},{ + "projectID": 658483, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 738044, + "title": "Innovative Tooling Design and Manufacturing for Thermoplastic Stringers and High Integration", + "topic": "JTI-CS2-2016-CFP03-AIR-02-21" +},{ + "projectID": 885976, + "title": "Innovative approaches for interior Noise Control for Next Generation Civil Tilt Rotor", + "topic": "JTI-CS2-2019-CFP10-AIR-02-82" +},{ + "projectID": 886521, + "title": "Non-intrusive, seedless measurement system: design, development, and testing", + "topic": "JTI-CS2-2019-CFP10-THT-10" +},{ + "projectID": 723402, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 875551, + "title": "Future propulsion and integration: towards a hybrid/electric aircraft (InCo flagship)", + "topic": "LC-MG-1-7-2019" +},{ + "projectID": 864474, + "title": "Innovative mould for thermoplastic skin of the lower fuselage demonstrator", + "topic": "JTI-CS2-2018-CFP09-LPA-02-27" +},{ + "projectID": 890599, + "title": "RPAS for Manned Flight Contingency Management", + "topic": "SESAR-ER4-30-2019" +},{ + "projectID": 887148, + "title": "Development of a distributed CFD platform for collaborative design", + "topic": "JTI-CS2-2019-CfP10-LPA-01-72" +},{ + "projectID": 763559, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 820945, + "title": "Development of a new backup electronics unit for Smart Inceptor", + "topic": "JTI-CS2-2017-CfP07-SYS-02-37" +},{ + "projectID": 820997, + "title": "Advance Nacelle Aerodynamic Optimisation", + "topic": "JTI-CS2-2017-CfP07-LPA-01-38" +},{ + "projectID": 821044, + "title": "Development and validation of a Powder HIP route for the manufacture of the UltraFan® Demonstrator IP Turbine casing from high temperature material allowing product enhancements at significantly lower costs and environmental footprint", + "topic": "JTI-CS2-2017-CfP07-ENG-03-22" +},{ + "projectID": 831939, + "title": "Airflow characterization through rotating labyrinth seal", + "topic": "JTI-CS2-2018-CfP08-ENG-01-34" +},{ + "projectID": 785293, + "title": "High density energy storage module for an electric taxi", + "topic": "JTI-CS2-2017-CFP06-SYS-02-30" +},{ + "projectID": 699382, + "title": "Automation in ATM", + "topic": "Sesar-01-2015" +},{ + "projectID": 700643, + "title": "Maritime Border Security topic 2: affordable and easily deployable technologies for EU coastal border surveillance with reduced impact on the environment", + "topic": "BES-02-2015" +},{ + "projectID": 737792, + "title": "Model-Based identification and assessment of aircraft electrical and thermal loads architecture management functions", + "topic": "JTI-CS2-2016-CFP03-SYS-02-21" +},{ + "projectID": 945548, + "title": "Regional Aircraft ITD GAM 2020", + "topic": "CS2-GAM-2020-REG" +},{ + "projectID": 686777, + "title": "Development of Thermoelastic Stress Analysis for the detection of stress hotspots during structural testing", + "topic": "JTI-CS2-2014-CFP01-LPA-02-06" +},{ + "projectID": 783161, + "title": "Integrated Airport", + "topic": "SESAR-VLD1-02-2016" +},{ + "projectID": 831993, + "title": "Cognitive Computing potential for cockpit operations", + "topic": "JTI-CS2-2018-CFP08-THT-02" +},{ + "projectID": 821038, + "title": "Full scale High speed aerodynamics characteristics of the Civil Tilt Rotor", + "topic": "JTI-CS2-2017-CfP07-FRC-01-16" +},{ + "projectID": 821381, + "title": "Intelligent Power Module", + "topic": "JTI-CS2-2017-CfP07-LPA-01-46" +},{ + "projectID": 101007567, + "title": "Aerodynamics experimental characterization and new experimental testing methodologies for distributed electrical propulsion", + "topic": "JTI-CS2-2020-CFP11-REG-01-20" +},{ + "projectID": 673505, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101006742, + "title": "Towards global environmental regulation of supersonic aviation", + "topic": "LC-MG-1-15-2020" +},{ + "projectID": 831879, + "title": "Development of integrated engine air intake and protection systems for Tilt Rotor", + "topic": "JTI-CS2-2018-CfP08-FRC-01-21" +},{ + "projectID": 891317, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 785419, + "title": "Development and validation of a self-adaptive system for automated assembly of major composite aerostructures", + "topic": "JTI-CS2-2017-CFP06-AIR-02-49" +},{ + "projectID": 101007958, + "title": "Development of New digital Microphone-MEMS-Sensors for wind tunnels with open/closed test sections and flight tests", + "topic": "JTI-CS2-2020-CfP11-LPA-01-88" +},{ + "projectID": 831999, + "title": "High efficiency full electrical low pressure Compartment Pressure Control System for tilt-rotor applications", + "topic": "JTI-CS2-2018-CfP08-FRC-01-24" +},{ + "projectID": 101018998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 831884, + "title": "Cognitive Computing potential for cockpit operations", + "topic": "JTI-CS2-2018-CFP08-THT-02" +},{ + "projectID": 738851, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 659328, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 641581, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 761966, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 820913, + "title": "High Performance Generation Channel Integration", + "topic": "JTI-CS2-2017-CfP07-LPA-01-45" +},{ + "projectID": 699313, + "title": "Automation in ATM", + "topic": "Sesar-01-2015" +},{ + "projectID": 755562, + "title": "Electromechanical actuation for landing gear", + "topic": "JTI-CS2-2016-CFP04-SYS-03-08" +},{ + "projectID": 864717, + "title": "Assessment of arc tracking hazards in high voltage aerospace systems", + "topic": "JTI-CS2-2018-CfP09-LPA-01-70" +},{ + "projectID": 686546, + "title": "Automation in Final Aircraft Assembly Lines and Enabling Technologies", + "topic": "JTI-CS2-2014-CFP01-LPA-02-04" +},{ + "projectID": 853096, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 887092, + "title": "Develop and test Power Efficient Actuation Concepts for Separation Flow Control at large aerodynamic areas requiring very low actuation energy", + "topic": "JTI-CS2-2019-CfP10-LPA-01-86" +},{ + "projectID": 737649, + "title": "Innovations in Titanium investment casting of lightweight structural components for aero engines", + "topic": "JTI-CS2-2016-CFP03-ENG-03-10" +},{ + "projectID": 831911, + "title": "Oil flow 4 channels regulation valves", + "topic": "JTI-CS2-2018-CfP08-ENG-01-35" +},{ + "projectID": 868389, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687554, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 831815, + "title": "Optimizing impingement cooling", + "topic": "JTI-CS2-2018-CfP08-ENG-01-36" +},{ + "projectID": 865267, + "title": "Model Manufacturing and Wind Tunnel Testing of High Lift System for SAT Aircraft", + "topic": "JTI-CS2-2018-CFP09-AIR-02-71" +},{ + "projectID": 880308, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864702, + "title": "Automated data collection and semi-supervised processing framework for deep learning", + "topic": "JTI-CS2-2018-CFP09-LPA-03-16" +},{ + "projectID": 865357, + "title": "Machine learning to detect Cyber intrusion and anomalies", + "topic": "JTI-CS2-2018-CfP09-SYS-01-11" +},{ + "projectID": 101007785, + "title": "Passive Actuated Inlet for UHBR engine ventilation", + "topic": "JTI-CS2-2020-CfP11-LPA-01-95" +},{ + "projectID": 769237, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 816895, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886718, + "title": "Active Flow control on Tilt Rotor lifting surfaces", + "topic": "JTI-CS2-2019-CFP10-AIR-02-81" +},{ + "projectID": 867809, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755596, + "title": "Analysis, validation and parametric studies of design and operating parameters for modern cabin ventilation concepts related to future aircraft energy management systems", + "topic": "JTI-CS2-2016-CFP04-SYS-02-28" +},{ + "projectID": 831942, + "title": "Development of an optimized DC-DC converter for a smart electrical system", + "topic": "JTI-CS2-2018-CfP08-SYS-02-53" +},{ + "projectID": 874474, + "title": "PJ.13 W2 IFR RPAS", + "topic": "SESAR-IR-VLD-WAVE2-11-2019" +},{ + "projectID": 821336, + "title": "Tests and Modelling for reliability characterization and robustness of optoelectronic transceivers for optical SHM systems", + "topic": "JTI-CS2-2017-CfP07-AIR-02-57" +},{ + "projectID": 717080, + "title": "Head Up System integration in next generation cockpits", + "topic": "JTI-CS2-2015-CFP02-LPA-03-06" +},{ + "projectID": 783183, + "title": "Enabling Aviation Infrastructure: CNS", + "topic": "SESAR-ER3-05-2016" +},{ + "projectID": 864089, + "title": "Alternative energy sources and novel propulsion technologies", + "topic": "JTI-CS2-2018-CfP09-TE2-01-07" +},{ + "projectID": 821020, + "title": "Finalize and improve the manufacturing of the model of a laminar wing configuration bizjet (LSBJ)", + "topic": "JTI-CS2-2017-CfP07-AIR-01-30" +},{ + "projectID": 883670, + "title": "Ultra-High Aspect ratio wings", + "topic": "JTI-CS2-2019-CFP10-THT-07" +},{ + "projectID": 738200, + "title": "Research and development of a compact drilling and fastening unit suitable for a range of standard 2 piece fasteners", + "topic": "JTI-CS2-2016-CFP03-AIR-01-18" +},{ + "projectID": 886535, + "title": "Power Semiconductor Device module using Silicon Carbide devices for a relatively high-frequency, circa 100kW aircraft motor drive applications", + "topic": "JTI-CS2-2019-CfP10-SYS-03-24" +},{ + "projectID": 715483, + "title": "Hybrid Propulsion Component Studies – Electrics", + "topic": "JTI-CS2-2015-CFP02-LPA-01-11" +},{ + "projectID": 886513, + "title": "Multipurpose bench for Tiltrotor equipment functional test", + "topic": "JTI-CS2-2019-CFP10-FRC-01-30" +},{ + "projectID": 832011, + "title": "Improved Thermal Properties of Computing Platforms for Next-Generation Avionics [SAT]", + "topic": "JTI-CS2-2018-CfP08-SYS-03-17" +},{ + "projectID": 874520, + "title": "VLD.03 W2 Improving runway throughput in one airport", + "topic": "SESAR-IR-VLD-WAVE2-16-2019" +},{ + "projectID": 699337, + "title": "Separation Management and Separation Standards", + "topic": "Sesar-07-2015" +},{ + "projectID": 638049, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 885932, + "title": "Grey Water Container with Reduced Biofilm Growth", + "topic": "JTI-CS2-2019-CfP10-SYS-01-21" +},{ + "projectID": 699328, + "title": "Communication,Navigation and Surveillance (CNS)", + "topic": "Sesar-08-2015" +},{ + "projectID": 855527, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 689239, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 682337, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 864901, + "title": "Conceptual Design of a 19-passenger Commuter Aircraft with near zero emissions", + "topic": "JTI-CS2-2018-CFP09-THT-03" +},{ + "projectID": 734140, + "title": "Flight Information Exchange", + "topic": "SESAR.IR-VLD.Wave1-28-2015" +},{ + "projectID": 785459, + "title": "Image based landing solutions for Disruptive Cockpit concept", + "topic": "JTI-CS2-2017-CFP06-LPA-03-09" +},{ + "projectID": 101007867, + "title": "Human Safe HVDC Interconnection components", + "topic": "JTI-CS2-2020-CFP11-SYS-02-64" +},{ + "projectID": 101017688, + "title": "Optimised use of Airspace", + "topic": "SESAR-VLD2-01-2020" +},{ + "projectID": 101007142, + "title": "Offshore wind basic science and balance of plant", + "topic": "LC-SC3-RES-31-2020" +},{ + "projectID": 787675, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 717179, + "title": "ALGeSMo (Advanced Landing Gear Sensing & Monitoring )", + "topic": "JTI-CS2-2015-CFP02-SYS-02-09" +},{ + "projectID": 717175, + "title": "Ice protection technology based on electromagnetic induction integrated in representative leading edge structure", + "topic": "JTI-CS2-2015-CFP02-AIR-02-11" +},{ + "projectID": 641498, + "title": "Releasing the potential of EGNSS applications through international cooperation", + "topic": "GALILEO-3-2014" +},{ + "projectID": 820666, + "title": "Novel mechanical drive disconnect for embedded Permanent Magnet machines", + "topic": "JTI-CS2-2017-CfP07-LPA-01-40" +},{ + "projectID": 738205, + "title": "Automated injection RTM system process based in innovative sensor technologies in a low cost smart manufacturing tooling prototype and any tooling involved in the manufacture or the validation of the structure", + "topic": "JTI-CS2-2016-CFP03-LPA-01-14" +},{ + "projectID": 101007699, + "title": "Automated thermography for inspection of welded safety critical engine components", + "topic": "JTI-CS2-2020-CfP11-LPA-01-90" +},{ + "projectID": 724034, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 101010327, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 687023, + "title": "Engine Mounting System (EMS) for Ground Test Demo", + "topic": "JTI-CS2-2014-CFP01-ENG-01-01" +},{ + "projectID": 755652, + "title": "Active Cockpit Simulator/Ground Station Facility and Test Environment enhancement", + "topic": "JTI-CS2-2016-CFP04-LPA-03-08" +},{ + "projectID": 672428, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 734272, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 755492, + "title": "Hydrophobic Windscreen Protection for Next Generation Civil Tilt Rotor", + "topic": "JTI-CS2-2016-CFP04-FRC-01-11" +},{ + "projectID": 101017479, + "title": "Increased flexibility in ATCO rating", + "topic": "SESAR-WAVE3-02-2020" +},{ + "projectID": 685704, + "title": "Process and Methods for E2E Maintenance Architecture development and demonstrations and solutions for technology integration", + "topic": "JTI-CS2-2014-CFP01-LPA-03-01" +},{ + "projectID": 769288, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 686701, + "title": "Structural bonded repair of monolithic composite airframe", + "topic": "JTI-CS2-2014-CFP01-AIR-02-05" +},{ + "projectID": 821354, + "title": "TE Technology diffusion model", + "topic": "JTI-CS2-2017-CfP07-TE2-01-06" +},{ + "projectID": 815122, + "title": "Multidisciplinary and collaborative aircraft design tools and processes", + "topic": "MG-3-1-2018" +},{ + "projectID": 887163, + "title": "Innovative Thrust Reverser Actuator System (ITRAS)", + "topic": "JTI-CS2-2019-CfP10-LPA-01-73" +},{ + "projectID": 674744, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 957506, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 864911, + "title": "Non-Intrusive Flow Field Measurement within a UHBR Intake", + "topic": "JTI-CS2-2018-CfP09-LPA-01-68" +},{ + "projectID": 699381, + "title": "Automation in ATM", + "topic": "Sesar-01-2015" +},{ + "projectID": 886352, + "title": "Disruptive Active Flow Control for aircraft engine applications", + "topic": "JTI-CS2-2019-CFP10-THT-09" +},{ + "projectID": 785484, + "title": "Insect contamination investigations and mitigation", + "topic": "JTI-CS2-2017-CFP06-LPA-01-32" +},{ + "projectID": 722071, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 637077, + "title": "Improved downstream processing of mixtures in process industries", + "topic": "SPIRE-03-2014" +},{ + "projectID": 744409, + "title": "Converting bio-based feedstocks via chemical building blocks into advanced materials for market applications", + "topic": "BBI-2016-F02" +},{ + "projectID": 752143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885040, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 821988, + "title": "SRC – Space robotics technologies", + "topic": "SPACE-12-TEC-2018" +},{ + "projectID": 681908, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 764458, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 848031, + "title": "Mental health in the workplace", + "topic": "SC1-BHC-22-2019" +},{ + "projectID": 648680, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 769574, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 772635, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 860635, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 865075, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 825319, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 101002763, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 635316, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 788960, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 634757, + "title": "Developing and comparing new models for safe and efficient, prevention oriented health and care systems", + "topic": "PHC-23-2014" +},{ + "projectID": 659022, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 841260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704587, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679586, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 750444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 947867, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 702725, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 741316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 754517, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 869764, + "title": "Visionary and integrated solutions to improve well-being and health in cities", + "topic": "SC5-14-2019" +},{ + "projectID": 101027258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702950, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 682608, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 898029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002987, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 657796, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 806999, + "title": "Development and validation of technology enabled, quantitative and sensitive measures of functional decline in people with early stage Alzheimer’s Disease (RADAR-AD)", + "topic": "IMI2-2017-12-01" +},{ + "projectID": 746581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 643529, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 101024970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823902, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 745631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 692221, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 777357, + "title": "DEVELOPMENT OF IMMUNE TOLERANCE THERAPIES FOR THE TREATMENT OF RHEUMATIC DISEASES", + "topic": "IMI2-2016-09-02" +},{ + "projectID": 957463, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 787476, + "title": "Science education outside the classroom", + "topic": "SwafS-11-2017" +},{ + "projectID": 951962, + "title": "Big Data Innovation Hubs", + "topic": "DT-ICT-05-2020" +},{ + "projectID": 891155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714427, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 659882, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 751739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714562, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 834300, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 793117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 744413, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727528, + "title": "Increasing digital security of health related data on a systemic level", + "topic": "DS-03-2016" +},{ + "projectID": 767850, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 966722, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 683765, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 843546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 666412, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014" +},{ + "projectID": 780302, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 812841, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 778104, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 655726, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 736733, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 896850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 644312, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 721107, + "title": "Advanced Materials for Power Electronics based on wide bandgap semiconductor devices technology", + "topic": "NMBP-02-2016" +},{ + "projectID": 648635, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 874313, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 849469, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688146, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 712491, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 805568, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 716151, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 640354, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 688540, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 688759, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 859111, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 711830, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 667751, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 681393, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101016787, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 101001841, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 838776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786919, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 734439, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101027026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725589, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 714408, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 951596, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101000858, + "title": "The Future of Seas and Oceans Flagship Initiative", + "topic": "BG-07-2019-2020" +},{ + "projectID": 101026386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796662, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 964468, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 864919, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 797058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 888707, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 635359, + "title": "Delivering the sub-sea technologies for new services at sea", + "topic": "BG-06-2014" +},{ + "projectID": 659337, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 669416, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 839062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101002846, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 769553, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 860762, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 869855, + "title": "Handling systems for flexible materials (RIA)", + "topic": "DT-FOF-12-2019" +},{ + "projectID": 671133, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 776342, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 715776, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679836, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 672466, + "title": "ERC Support for novel ways to highlight the work funded by the ERC and reach out a wider public.", + "topic": "ERC-SUPPORT-2014" +},{ + "projectID": 669891, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 637653, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 757996, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 840691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655938, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101016985, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 899626, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 892653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 850941, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101022949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 818563, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 853516, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 794592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 665595, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 795161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 761981, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 964562, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 966709, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 715884, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 748583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771883, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 830454, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645991, + "title": "Biomaterials for the treatment of diabetes mellitus", + "topic": "NMP-10-2014" +},{ + "projectID": 742883, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 808131, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 801540, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 710079, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 964342, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 948476, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 639795, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 828384, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646272, + "title": "Biomaterials for the treatment of diabetes mellitus", + "topic": "NMP-10-2014" +},{ + "projectID": 755005, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 874586, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 101029927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 681045, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 948692, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 875669, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101001242, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 641036, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 643776, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 760986, + "title": "Nanotechnologies for imaging cellular transplants and regenerative processes in vivo", + "topic": "NMBP-15-2017" +},{ + "projectID": 964883, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 710095, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 703305, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 726497, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 834860, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 657716, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 812865, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 733248, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 825392, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 763310, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 792770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 648894, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 846520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705607, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 863087, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 756195, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 882359, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021043, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 682665, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 846299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665632, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 758710, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 812001, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725271, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 882691, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 650206, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 948138, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 745142, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 639107, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101002563, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101010838, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 889075, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832248, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 838296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949495, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 728883, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 796438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 781195, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 685727, + "title": "Manufacturing and control of nanoporous materials", + "topic": "NMP-03-2015" +},{ + "projectID": 702121, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 759721, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 739802, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 697593, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 734873, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 806431, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 855407, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828301, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691527, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 673853, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 866530, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 896189, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 709023, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 637654, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794982, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 737558, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 798891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892983, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101007825, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 763635, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 952300, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 874346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019166, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 836415, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 721816, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 957036, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101001499, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 834193, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655833, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 700151, + "title": "Crisis management topic 3: Demonstration activity on large scale disasters and crisis management and resilience of EU external assets against major identified threats or causes of crisis", + "topic": "DRS-03-2015" +},{ + "projectID": 755439, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 674446, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 817803, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 677493, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101021274, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 705499, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820047, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 809015, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 816607, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948797, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 786304, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 891467, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 653980, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 793581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 823759, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 743607, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793558, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875988, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864923, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 787111, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 791672, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 776193, + "title": "EO Big Data Shift", + "topic": "EO-2-2017" +},{ + "projectID": 101026390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 855779, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824311, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 769054, + "title": "Protection of all road users in crashes", + "topic": "MG-3.2-2017" +},{ + "projectID": 101006943, + "title": "Next generation electrified vehicles for urban and suburban use", + "topic": "LC-GV-08-2020" +},{ + "projectID": 724095, + "title": "System and cost optimised hybridisation of road vehicles", + "topic": "GV-03-2016" +},{ + "projectID": 101006747, + "title": "Next generation electrified vehicles for urban and suburban use", + "topic": "LC-GV-08-2020" +},{ + "projectID": 636136, + "title": "Traffic safety analysis and integrated approach towards the safety of Vulnerable Road Users", + "topic": "MG-3.4-2014" +},{ + "projectID": 824244, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 640658, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 101006953, + "title": "Next generation electrified vehicles for urban and suburban use", + "topic": "LC-GV-08-2020" +},{ + "projectID": 761167, + "title": "Paper-based electronics", + "topic": "PILOTS-05-2017" +},{ + "projectID": 879926, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 674825, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 876362, + "title": "ECSEL-2019-1-IA", + "topic": "ECSEL-2019-1-IA" +},{ + "projectID": 945583, + "title": "Large Passenger Aircraft ITD GAM 2020", + "topic": "CS2-GAM-2020-LPA" +},{ + "projectID": 688900, + "title": "Safe and connected automation in road transport", + "topic": "MG-3.6a-2015" +},{ + "projectID": 743788, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 731330, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 831258, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643270, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101017702, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 101017521, + "title": "Collaborative U-space-ATM SWIM interface", + "topic": "SESAR-WAVE3-03-2020" +},{ + "projectID": 890417, + "title": "Enabling Performance by Innovation in Air Traffic Services", + "topic": "SESAR-ER4-19-2019" +},{ + "projectID": 641650, + "title": "Flexible processing technologies", + "topic": "SC5-11b-2014" +},{ + "projectID": 875527, + "title": "Research and innovation for advanced Li-ion cells (generation 3b)", + "topic": "LC-BAT-5-2019" +},{ + "projectID": 963574, + "title": "Hybridisation of battery systems for stationary energy storage", + "topic": "LC-BAT-9-2020" +},{ + "projectID": 705339, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101028682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704659, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 875568, + "title": "Research and innovation for advanced Li-ion cells (generation 3b)", + "topic": "LC-BAT-5-2019" +},{ + "projectID": 687306, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 853133, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101007577, + "title": "High power density / multifunctional electrical energy storage solutions for aeronautic applications", + "topic": "JTI-CS2-2020-CFP11-THT-11" +},{ + "projectID": 646286, + "title": "Storage of energy produced by decentralised sources", + "topic": "NMP-13-2014" +},{ + "projectID": 775250, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 749512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 856066, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711260, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 829145, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101017990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866101, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876806, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738864, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 755456, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 798169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737616, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 684817, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 684085, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 101032227, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 954593, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824262, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 683683, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 814471, + "title": "Materials for future highly performant electrified vehicle batteries (RIA)", + "topic": "LC-NMBP-30-2018" +},{ + "projectID": 889817, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771777, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 896195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 790600, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 864698, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 963281, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 687561, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 766670, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 859148, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101008179, + "title": "Oxygen Absorbing Metal-Air-Batteries for Long Term Cargo Compartment Inertisation", + "topic": "JTI-CS2-2020-CfP11-SYS-01-22" +},{ + "projectID": 765828, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 821226, + "title": "Development of a High Voltage Lithium Battery", + "topic": "JTI-CS2-2017-CfP07-SYS-02-39" +},{ + "projectID": 791254, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 843621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 826871, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 860403, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 653331, + "title": "Next generation of competitive Li-ion batteries to meet customer expectations", + "topic": "GV-1-2014" +},{ + "projectID": 696326, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 741855, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 651353, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 714744, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 697504, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 656658, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 809304, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 862055, + "title": "Real-time nano-characterisation technologies (RIA)", + "topic": "DT-NMBP-08-2019" +},{ + "projectID": 862492, + "title": "Materials, manufacturing processes and devices for organic and large area electronics (IA)", + "topic": "DT-NMBP-18-2019" +},{ + "projectID": 659226, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 948319, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101027955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 646742, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 839661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 829116, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 667192, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 775354, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 759577, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 706707, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 887089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637186, + "title": "Adaptable envelopes integrated in building refurbishment projects", + "topic": "EeB-02-2014" +},{ + "projectID": 858089, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648528, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 781906, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 715403, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 751257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655628, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 805337, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 856705, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 760311, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 798409, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 821431, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 101023389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641899, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 763685, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 685795, + "title": "Nanomedicine therapy for cancer", + "topic": "NMP-11-2015" +},{ + "projectID": 858132, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 951761, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 705054, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101028904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 676904, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 703696, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679891, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 952335, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 708814, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 899661, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 760899, + "title": "High-performance materials for optimizing carbon dioxide capture", + "topic": "NMBP-20-2017" +},{ + "projectID": 747221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648454, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 846028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 887268, + "title": "In support of documentary standards (CSA)", + "topic": "NMBP-34-2019" +},{ + "projectID": 786560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705592, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 735248, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 957534, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 751763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766805, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 679124, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 945378, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 832713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659667, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 844286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 867467, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 750455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101032113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 735777, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 843332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 772817, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101024823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 680555, + "title": "Integrated solutions of thermal energy storage for building applications", + "topic": "EeB-06-2015" +},{ + "projectID": 761031, + "title": "Nanotechnologies for imaging cellular transplants and regenerative processes in vivo", + "topic": "NMBP-15-2017" +},{ + "projectID": 885534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002123, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 891908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 778266, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 713250, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 797153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 790303, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 644631, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 101027489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 766656, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 840295, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 779152, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 796320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787410, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 786952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 784596, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 803220, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 674434, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 747206, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893371, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853005, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 816332, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016038, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 644013, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 838448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862093, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 641023, + "title": "New knowledge and technologies", + "topic": "LCE-01-2014" +},{ + "projectID": 893762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 864772, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 794094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031503, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 863823, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 647020, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 753223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707161, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 769140, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 661127, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 872049, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 641768, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 648779, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 739799, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 966824, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 704522, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956190, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 666295, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 696828, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 855867, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718855, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 680559, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101029091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 654733, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 964766, + "title": "Micro- and nano-plastics in our environment: Understanding exposures and impacts on human health", + "topic": "SC1-BHC-36-2020" +},{ + "projectID": 948225, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 848325, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 835268, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 704803, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101031577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 744881, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 892354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 764958, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 734381, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 696954, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 789116, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 897231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 957225, + "title": "Self-healing functionalities for long lasting battery cell chemistries", + "topic": "LC-BAT-14-2020" +},{ + "projectID": 798639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657215, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 828002, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774401, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101017821, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 655881, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 702629, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 726499, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 798830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646142, + "title": "Scale-up of nanopharmaceuticals production", + "topic": "NMP-08-2014" +},{ + "projectID": 838342, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 846617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679399, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 793641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 699274, + "title": "Trajectory Based Operations (TBO)", + "topic": "Sesar-09-2015" +},{ + "projectID": 700833, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 856670, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 657139, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639008, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 834597, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 748310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101019746, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 796794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 664406, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 101023335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030031, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 705402, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818045, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 751878, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 654100, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 877044, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101030447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677312, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 851752, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 813282, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 880158, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813261, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 777974, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 749229, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026563, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 639233, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101001417, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 827908, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 689810, + "title": "Self management of health and disease and decision support systems based on predictive computer modelling used by the patient him or herself", + "topic": "PHC-28-2015" +},{ + "projectID": 643998, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 714892, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705532, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 691161, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 685648, + "title": "Manufacturing and control of nanoporous materials", + "topic": "NMP-03-2015" +},{ + "projectID": 886028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 751121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704245, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704464, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662629, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 888743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 638145, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 950421, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 706556, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 751439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 849973, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 898627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 646903, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 695116, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 666800, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 101033109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701599, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802682, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101026739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 853500, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101003405, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 882135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714151, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 736112, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101029928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693529, + "title": "European cohesion, regional and urban policies and the perceptions of Europe", + "topic": "REFLECTIVE-3-2015" +},{ + "projectID": 794412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 811965, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101025187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 847762, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 863952, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 846873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838786, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694722, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 771971, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 713397, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 769595, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 865751, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 803213, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 778001, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 861913, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 893380, + "title": "Innovation in Network Management", + "topic": "SESAR-ER4-16-2019" +},{ + "projectID": 640351, + "title": "Access technologies and characterisation for Near Earth Objects (NEOs)", + "topic": "PROTEC-2-2014" +},{ + "projectID": 850529, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 694410, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101027920, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715571, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 757699, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 735480, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 787926, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 666729, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 898956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658676, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771217, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 867655, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655212, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101031434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641839, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 746186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895411, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638176, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 866815, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832352, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 957495, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 749537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683210, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 793893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701593, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661650, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 638307, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 841906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 753124, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 851667, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 797747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660859, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 667211, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 891569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661818, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 704133, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 893810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 661690, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707300, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 753569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669240, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 682501, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 648527, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 703803, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 948800, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 685778, + "title": "Metagenomics as innovation driver", + "topic": "BIOTEC-6-2015" +},{ + "projectID": 640638, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 751735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 894369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899947, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101024333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660104, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 952908, + "title": "Multi-omics for genotype-phenotype associations (RIA)", + "topic": "BIOTEC-07-2020" +},{ + "projectID": 700819, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 852839, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101032806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864697, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 755075, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101003186, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101032858, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834068, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 668981, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 693555, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 678698, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 844446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851018, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 797203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699858, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770940, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 772852, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 798916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 633184, + "title": "Tackling losses from terrestrial animal diseases", + "topic": "SFS-01b-2014" +},{ + "projectID": 670955, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101029875, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 796581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 708762, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659211, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 863320, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101030869, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 887760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 811483, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804933, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 842971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 856453, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 746635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 866478, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 798205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707312, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 874958, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717034, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 816194, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 803151, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 798841, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 652476, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 852865, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 890883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851910, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 798304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 802567, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 678073, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 747946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 801434, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 646625, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 751567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704035, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002240, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101000199, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 680200, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 637830, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 682899, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 893077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001951, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 638197, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 677152, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 639249, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 749362, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101029581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658145, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 889074, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742654, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 892446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660378, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 863099, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 682360, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 844948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 883781, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 741744, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 860627, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 748909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 849781, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949570, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 843074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 691061, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 660946, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 819540, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 875102, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 832741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839297, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 729433, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 866411, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 709077, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 853057, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 706636, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101002561, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 949894, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 893236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948973, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 864522, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 697900, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 894032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 671978, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 715322, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 639784, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101020004, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 747094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683000, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 659205, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739736, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 819814, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 751085, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 725746, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 949613, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 787181, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 713303, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 791673, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 823951, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 750345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 770402, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 658625, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703745, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681605, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 774125, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 776410, + "title": "Space Weather", + "topic": "COMPET-5-2017" +},{ + "projectID": 648365, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 834811, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 889031, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 859850, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 856439, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 101030280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 680040, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716379, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 682938, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 796507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 832403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855720, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647458, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 843144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658061, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 787790, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 820152, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 655020, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789037, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 740427, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 755667, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 681181, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 811755, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703093, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658261, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 868117, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957496, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 835386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819826, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 853640, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 743576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 641182, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 848011, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 864243, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 674266, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 676129, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 896962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101038051, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 684862, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 750368, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 740685, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 659371, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884664, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101001746, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 661434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818635, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 795635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 761525, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 657125, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 893404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 651065, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 658560, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696335, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 704514, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 682286, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 658579, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101017606, + "title": "Pre-commercial Procurement for Digital Health and Care Solutions", + "topic": "SC1-DTH-14-2020" +},{ + "projectID": 949918, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 866075, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 796600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 868696, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740537, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 719912, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 101027263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 683823, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101026118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 970550, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 678563, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101027324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019039, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 733176, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 842539, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101002275, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 842174, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 747488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 689715, + "title": "Digital representation of health data to improve disease diagnosis and treatment", + "topic": "PHC-30-2015" +},{ + "projectID": 864164, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 874146, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736337, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 659223, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 953945, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855417, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685041, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 885214, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963863, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 801127, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 843843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948478, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 874896, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 765000, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 856488, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 101023902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 713714, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 101025241, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001866, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 746526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 794926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 791683, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 739688, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 896825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 952520, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 772471, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 851448, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 726318, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 865026, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 703966, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 695300, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 875139, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 818449, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 845064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 813169, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 822227, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 810287, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 708312, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025510, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 889774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 811744, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653240, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 726225, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 767931, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 663291, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 796535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 863362, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 879948, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875516, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 816437, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899770, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 693038, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 830457, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889219, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868369, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771427, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 659183, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101016902, + "title": "AI for the smart hospital of the future", + "topic": "DT-ICT-12-2020" +},{ + "projectID": 756861, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 728611, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 798957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692945, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 749697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704807, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884608, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 876156, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007642, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 796329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790903, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101017558, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 653434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661883, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 778003, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 820880, + "title": "Pilot programme on a Clinical Compound Bank for Repurposing: Neurodegenerative diseases", + "topic": "IMI2-2017-13-14" +},{ + "projectID": 949478, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 636116, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 645741, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 863664, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 756280, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 865022, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 749084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 728813, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 838596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646880, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 691110, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 946638, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 661733, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 754994, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 892116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875931, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643706, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 898265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 689209, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 776379, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 792832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835463, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 757583, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 874466, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855394, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769220, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 793834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 825143, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 955930, + "title": "Sensing functionalities for smart battery cell chemistries", + "topic": "LC-BAT-13-2020" +},{ + "projectID": 872088, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 737434, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 101015848, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 862848, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 644052, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 824984, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 737454, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 653355, + "title": "Law enforcement capabilities topic 1: Develop novel monitoring systems and miniaturised sensors that improve Law Enforcement Agencies' evidence- gathering abilities", + "topic": "FCT-05-2014" +},{ + "projectID": 872662, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 753785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 801423, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 843162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833214, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 739706, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 819346, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 752277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772191, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 883739, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 862092, + "title": "Open Innovation Test Beds for nano-enabled surfaces and membranes (IA)", + "topic": "DT-NMBP-03-2019" +},{ + "projectID": 816006, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 840626, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 739658, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 749944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101038093, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101002478, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 727480, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 898792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804320, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101031710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825794, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101028242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 873262, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948769, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 840980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 846107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 650745, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 682367, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101019141, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 648304, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 841621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023308, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 695206, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 957468, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 703366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 694426, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 786445, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 841922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 826858, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 633937, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 887712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835339, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949724, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852590, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 682009, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 725100, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 741799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724813, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 839641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660731, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 894082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843870, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 778357, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101030637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 639720, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101034919, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 872370, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 778157, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 892570, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749368, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 646260, + "title": "High-definition printing of multifunctional materials", + "topic": "NMP-04-2014" +},{ + "projectID": 842790, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 893194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853387, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 661823, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 758769, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 660769, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 764476, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 740479, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 798380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886780, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842423, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 654967, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 700802, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 648589, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 759603, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 819580, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 853393, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101018002, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 747414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772646, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 811040, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 803553, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 737212, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 701690, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657925, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 766566, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 678573, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 797145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 863934, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 642356, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 705791, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860365, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101024362, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958374, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 694151, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101030868, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 733617, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 682843, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 894831, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661777, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706314, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702590, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 883759, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 693124, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 885413, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 695343, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 659054, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661369, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863098, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 890308, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 741123, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 883892, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101028491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714586, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 898264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 683708, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 894075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 946223, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 771346, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 659247, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 648615, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647112, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 885593, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 788218, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 660695, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659614, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637476, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 785971, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 864127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 714936, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101019932, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 666952, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 875672, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 894575, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 863869, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 836503, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 738529, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 966710, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 647474, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 780718, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 786020, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 790206, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 805445, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 706564, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700189, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 728824, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 724681, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 736314, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 899018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852096, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101024059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721642, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 885795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786707, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 818266, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 805202, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 679080, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101020943, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 886314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 756966, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 805021, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 828946, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 833824, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 790715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 948049, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 675867, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 798909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772257, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 637831, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 741734, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 638027, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 865826, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101024605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658992, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678309, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 894331, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771537, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 803024, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 748635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 717525, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 895168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 767227, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 800860, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 950560, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101033538, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704045, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 861962, + "title": "Real-time nano-characterisation technologies (RIA)", + "topic": "DT-NMBP-08-2019" +},{ + "projectID": 664878, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 950533, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 840751, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674107, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 751778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701713, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 637920, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 750777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740362, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 637815, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 732969, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 842694, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681164, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 867667, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 826284, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 101024788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 815074, + "title": "5G End to End Facility", + "topic": "ICT-17-2018" +},{ + "projectID": 844668, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 732253, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 854105, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643002, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 761992, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 659067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 722788, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101002408, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101019987, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 637928, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 684767, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 688624, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 814918, + "title": "Advanced technologies (Security/Cloud/IoT/BigData) for a hyper-connected society in the context of Smart City", + "topic": "EUJ-01-2018" +},{ + "projectID": 773048, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 659175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 856950, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 859881, + "title": "EU-Taiwan 5G collaboration", + "topic": "ICT-23-2019" +},{ + "projectID": 892163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871780, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 679000, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 662990, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 668995, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 101017171, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 957242, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 101023114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957216, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 957317, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 101016567, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 876360, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004145, + "title": "Satellite communication technologies", + "topic": "SPACE-29-TEC-2020" +},{ + "projectID": 951947, + "title": "5G PPP – 5G for Connected and Automated Mobility (CAM)", + "topic": "ICT-53-2020" +},{ + "projectID": 101024144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702694, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 814215, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 732569, + "title": "Future Internet Experimentation - Building a European experimental Infrastructure", + "topic": "ICT-13-2016" +},{ + "projectID": 777137, + "title": "5G Networks", + "topic": "EUB-03-2017" +},{ + "projectID": 644672, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 754514, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 856691, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 671562, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 863155, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 746142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 880054, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 871769, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 895916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004233, + "title": "Satellite communication technologies", + "topic": "SPACE-29-TEC-2020" +},{ + "projectID": 880935, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768491, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101032241, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 771036, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 952379, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 731043, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 723247, + "title": "5G – Next Generation Communication Networks", + "topic": "EUK-01-2016" +},{ + "projectID": 763601, + "title": "Datalink", + "topic": "RPAS-05" +},{ + "projectID": 695495, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 969418, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877495, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 951867, + "title": "5G PPP – 5G for Connected and Automated Mobility (CAM)", + "topic": "ICT-53-2020" +},{ + "projectID": 957102, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 644678, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 679841, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 871643, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 871533, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 957218, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 101016681, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 688750, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 761434, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 729491, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 775056, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 881172, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861222, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 737135, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2016" +},{ + "projectID": 815323, + "title": "5G", + "topic": "EUK-02-2018" +},{ + "projectID": 843401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839200, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 694977, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 965124, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 856641, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 101032219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 815279, + "title": "5G End to End Facility", + "topic": "ICT-17-2018" +},{ + "projectID": 821000, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2018-2019-2020" +},{ + "projectID": 723227, + "title": "CHINA: Collaboration on Future Internet", + "topic": "ICT-37-2016" +},{ + "projectID": 671639, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 823260, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957321, + "title": "Next Generation Media", + "topic": "ICT-44-2020" +},{ + "projectID": 101016499, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 816538, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870249, + "title": "EGNSS applications fostering digitisation", + "topic": "DT-SPACE-EGNSS-2-2019-2020" +},{ + "projectID": 871808, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 756049, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 892431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 956830, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 688116, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 660783, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723014, + "title": "Experimental testbeds on Information-Centric Networking", + "topic": "EUJ-03-2016" +},{ + "projectID": 957059, + "title": "Next Generation Media", + "topic": "ICT-44-2020" +},{ + "projectID": 704947, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 782927, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 821830, + "title": "Satellite communication technologies", + "topic": "SPACE-15-TEC-2018" +},{ + "projectID": 893917, + "title": "CNS for ATM", + "topic": "SESAR-ER4-11-2019" +},{ + "projectID": 826392, + "title": "H2020-ECSEL-2018-2-RIA", + "topic": "ECSEL-2018-2-RIA" +},{ + "projectID": 839573, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839086, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714850, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 951215, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 804349, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 723171, + "title": "5G – Next Generation Communication Networks", + "topic": "EUJ-01-2016" +},{ + "projectID": 101033077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 643297, + "title": "Access networks for densely located users", + "topic": "EUJ-3-2014" +},{ + "projectID": 657366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 783274, + "title": "RIA", + "topic": "ECSEL-2017-2" +},{ + "projectID": 892456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 709249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 833350, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 954072, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815178, + "title": "5G End to End Facility", + "topic": "ICT-17-2018" +},{ + "projectID": 868375, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948739, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 791967, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 812992, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 864234, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 744659, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669179, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 679030, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 644056, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 647276, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 852845, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101033191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706476, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702655, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 814523, + "title": "5G and beyond", + "topic": "EUJ-02-2018" +},{ + "projectID": 872155, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010348, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 725929, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 797546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654734, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 793402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 714161, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 897938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755516, + "title": "Flight critical wireless slip ring for a civil tiltrotor", + "topic": "JTI-CS2-2016-CFP04-FRC-01-12" +},{ + "projectID": 726658, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 752644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 826098, + "title": "Implementing new technologies for the TCMS", + "topic": "S2R-CFM-IP1-02-2018" +},{ + "projectID": 797061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706929, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956584, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 724663, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 898732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 761390, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 644526, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 739891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 790360, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 854462, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 717350, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101013425, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 824994, + "title": "EU-US Collaboration for advanced wireless platforms", + "topic": "ICT-21-2018" +},{ + "projectID": 762119, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 664828, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 760809, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 886605, + "title": "SHMS and Dynamic fields sensors development", + "topic": "JTI-CS2-2019-CFP10-REG-02-06" +},{ + "projectID": 947485, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673727, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 819819, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101014811, + "title": "Validation of new technologies for the TCMS", + "topic": "S2R-CFM-IP1-02-2020" +},{ + "projectID": 893822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 790395, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 956670, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 843133, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638059, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101003431, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 891515, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 648417, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 841356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714067, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 826087, + "title": "Radio communication and simulation of train dynamics for Distributed Power within long trains", + "topic": "S2R-OC-IP5-01-2018" +},{ + "projectID": 834978, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674292, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 737545, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 871668, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 775930, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 723955, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 803004, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 844253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 671598, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 709841, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 875660, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 852953, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 843136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 872878, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101017226, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 814734, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664354, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 880754, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684234, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 732433, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 694974, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 857654, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 842243, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 760150, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 633945, + "title": "External nutrient inputs", + "topic": "SFS-02a-2014" +},{ + "projectID": 775292, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 752819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 850041, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 785495, + "title": "Development of functionalizable materials", + "topic": "JTI-CS2-2017-CFP06-SYS-02-33" +},{ + "projectID": 846077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 671868, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 754815, + "title": "Electrohydraulic integration of an hybrid surface actuation systems", + "topic": "JTI-CS2-2016-CFP04-REG-02-03" +},{ + "projectID": 675353, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 777968, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 778070, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 657296, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648382, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 755953, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 877334, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825549, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 101032170, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789190, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 672962, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 761794, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 891221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 963945, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 741415, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 674006, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 680872, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 963955, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 717174, + "title": "Conventional and Smart Bearings for Ground Test Demo", + "topic": "JTI-CS2-2015-CFP02-ENG-01-02" +},{ + "projectID": 793140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 687008, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 690750, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 722424, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 964246, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 894258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 834389, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 761745, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 872752, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 957151, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101002704, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 753048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870427, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 955699, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 946845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675662, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 732582, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 948624, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101024432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788968, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 673930, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 840937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852948, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 714122, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 670918, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 838001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758345, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 646807, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 788031, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 778156, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101026339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659225, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 892761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707071, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 851768, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 657194, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648546, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 707168, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 708439, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678462, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714193, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101033102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 751255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 805437, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 819588, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 716472, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705829, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 749220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709265, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802020, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 679528, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 754362, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 834735, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 851560, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 948207, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 758800, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 947978, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 803860, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 722104, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101028041, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 642768, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 713632, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 737570, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 852769, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 788215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 682150, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 788308, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 786344, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 756489, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 682603, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 647554, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 639813, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 945275, + "title": "Innovation for Generation II and III reactors", + "topic": "NFRP-2019-2020-04" +},{ + "projectID": 788144, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101033047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018287, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 633509, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 853234, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 842528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 949499, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 838426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851866, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 714532, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101027658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 810660, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 715620, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 655941, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 882971, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 648032, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647678, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101032990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018170, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101031656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948770, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 891734, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 884931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 753812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 676541, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 670624, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 724903, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 786198, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 670116, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 715361, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 836055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 813948, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 895379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 677061, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 846636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000060, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 739746, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 660943, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 819417, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 679175, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 863438, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101038085, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 778010, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 665593, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 897344, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819025, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 704111, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714642, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 844597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660047, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692854, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 802895, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 759471, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 842860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707693, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 696367, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 804302, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 765048, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 870772, + "title": "Drivers and contexts of violent extremism in the broader MENA region and the Balkans", + "topic": "SU-GOVERNANCE-10-2019" +},{ + "projectID": 863418, + "title": "Tilt Rotor Whirl Flutter experimental investigation and assessment", + "topic": "JTI-CS2-2018-CFP09-FRC-01-27" +},{ + "projectID": 826055, + "title": "Transversal exploratory research activities and knowledge transfer", + "topic": "S2R-OC-IPX-02-2018" +},{ + "projectID": 753816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825333, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 798115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833787, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 731940, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 952330, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 821875, + "title": "Access to space", + "topic": "SPACE-16-TEC-2018" +},{ + "projectID": 955569, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 893699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777998, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 651658, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 642795, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 657621, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 677559, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 701386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895406, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004488, + "title": "Evolving European media landscapes and Europeanisation", + "topic": "TRANSFORMATIONS-10-2020" +},{ + "projectID": 877102, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680901, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 952377, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 687847, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 694896, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 637024, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 689996, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 866535, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 647214, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 745947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867542, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007990, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 947872, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 817791, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 819131, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 896869, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851288, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 705037, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 724704, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 827140, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796817, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 777822, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 849169, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101016444, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 670535, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101028085, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 683464, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 873351, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865300, + "title": "Aircraft Design Optimisation providing optimum performance towards limiting aviation’s contribution towards Global Warming", + "topic": "JTI-CS2-2018-CFP09-THT-04" +},{ + "projectID": 637770, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637171, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 702483, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 849125, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 802735, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101026453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 739803, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 724809, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 671517, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 788183, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 655324, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 813680, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 891287, + "title": "Innovation in Airport Operation", + "topic": "SESAR-ER4-13-2019" +},{ + "projectID": 700893, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023666, + "title": "Upgrading smartness of existing buildings through innovations for legacy equipment", + "topic": "LC-SC3-B4E-3-2020" +},{ + "projectID": 856183, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874082, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825014, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 864035, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 877503, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 722427, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 700386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 894741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 952363, + "title": "Contribution to the IEA & Energy Transition Support", + "topic": "IBA-Energy-IEA-2019" +},{ + "projectID": 708507, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 825225, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 730888, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101028810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882673, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101032683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844457, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 738973, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 750947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001226, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 816000, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690008, + "title": "New sustainable exploration technologies and geomodels", + "topic": "SC5-11d-2015" +},{ + "projectID": 823978, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101034267, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 101007705, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 678282, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 701737, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101007855, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 765921, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 675332, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 950466, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 765635, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 691164, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 704010, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705023, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 644018, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 785793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 661317, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739739, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 796487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867633, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779318, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 734997, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 724175, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 891744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 723139, + "title": "IoT/Cloud/Big Data platforms in social application contexts", + "topic": "EUJ-02-2016" +},{ + "projectID": 854713, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644294, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 785350, + "title": "Interactional aerodynamic assessment of advanced Tilt Rotor configuration", + "topic": "JTI-CS2-2017-CFP06-FRC-01-15" +},{ + "projectID": 101032300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703608, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 759253, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 859503, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687091, + "title": "Instrumented bearing for oil cooled starter/generator", + "topic": "JTI-CS2-2014-CFP01-SYS-02-05" +},{ + "projectID": 841278, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646573, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 864360, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 101035802, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 101007260, + "title": "ECSEL-IA", + "topic": "ECSEL-2020-1-IA" +},{ + "projectID": 825161, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 814865, + "title": "Renewable energy system integrated at the building scale", + "topic": "LC-SC3-RES-4-2018" +},{ + "projectID": 866158, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 842231, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 791875, + "title": "Demonstration of large >10MW wind turbine", + "topic": "LCE-14-2017" +},{ + "projectID": 739664, + "title": "Grant to named beneficiary to support the operations of the European Energy Research Alliance (EERA)", + "topic": "IBA-ENERGY-EERASE-2016" +},{ + "projectID": 814158, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 952979, + "title": "Demonstration of innovative technologies for floating wind farms", + "topic": "LC-SC3-RES-19-2020" +},{ + "projectID": 751947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 875041, + "title": "InCo flagship on “Urban mobility and sustainable electrification in large urban areas in developing and emerging economies”", + "topic": "LC-GV-05-2019" +},{ + "projectID": 773422, + "title": "Validation of diagnostic tools for animal and plant health", + "topic": "SFS-13-2017" +},{ + "projectID": 644801, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 692527, + "title": "Semicondutor Process, Equipment and Materials", + "topic": "ECSEL-06-2015" +},{ + "projectID": 732350, + "title": "Large Scale Pilots", + "topic": "IoT-01-2016" +},{ + "projectID": 659576, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705230, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 642355, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 687697, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 767589, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 754462, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 101031380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 951725, + "title": "5G PPP – 5G for Connected and Automated Mobility (CAM)", + "topic": "ICT-53-2020" +},{ + "projectID": 659747, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 761557, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 815083, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 701597, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 638902, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 813837, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 764604, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 732613, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 899679, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 815159, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 818153, + "title": "Demonstrate solutions that significantly reduce the cost of renewable power generation", + "topic": "LC-SC3-RES-13-2018" +},{ + "projectID": 891561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003562, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 640218, + "title": "Outreach through education", + "topic": "COMPET-10-2014" +},{ + "projectID": 883390, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SU-DRS04-2019-2020" +},{ + "projectID": 949125, + "title": "Support to the coordination of national research and innovation programmes in the areas of activities of the European Energy Research Alliance (EERA)", + "topic": "IBA-SC3-EERA-2018" +},{ + "projectID": 861291, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101028381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958855, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 654662, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 674801, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 727680, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 788359, + "title": "Integrating Society in Science and Innovation – An approach to co-creation", + "topic": "SwafS-13-2017" +},{ + "projectID": 834540, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 771878, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101037141, + "title": "Accelerating the green transition and energy access Partnership with Africa", + "topic": "LC-GD-2-3-2020" +},{ + "projectID": 642771, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 766115, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 864496, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 101034420, + "title": "Modelling the impact of monoclonal antibodies and vaccines on the reduction of antimicrobial resistance", + "topic": "IMI2-2020-23-02" +},{ + "projectID": 642433, + "title": "Strategic cooperation partnerships", + "topic": "WATER-5a-2014" +},{ + "projectID": 817737, + "title": "Sustainable European aquaculture 4.0: nutrition and breeding", + "topic": "DT-BG-04-2018-2019" +},{ + "projectID": 665233, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 640741, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 862605, + "title": "ERANETs in agri-food", + "topic": "SFS-31-2019" +},{ + "projectID": 772370, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 681881, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 871877, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 641420, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 780354, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 101006927, + "title": "New test rig devices for accelerating ocean energy technology development", + "topic": "LC-SC3-RES-32-2020" +},{ + "projectID": 788567, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 745586, + "title": "Advanced biomaterials for smart food packaging", + "topic": "BBI-2016-R05" +},{ + "projectID": 875489, + "title": "Modelling and simulation for Redox Flow Battery development", + "topic": "LC-BAT-3-2019" +},{ + "projectID": 713474, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 847101, + "title": "Socio-economic research conceptualising and modelling energy efficiency and energy demand", + "topic": "LC-SC3-EE-14-2018-2019-2020" +},{ + "projectID": 853720, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 828799, + "title": "International Cooperation on HPC", + "topic": "FETHPC-01-2018" +},{ + "projectID": 722779, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 721281, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101007799, + "title": "Innovations to accelerate vaccine development vaccine development and manufacture", + "topic": "IMI2-2020-20-02" +},{ + "projectID": 951747, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 964808, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 869918, + "title": "New developments in plus energy houses (IA)", + "topic": "LC-EEB-03-2019" +},{ + "projectID": 692031, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 778158, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 745673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652690, + "title": "Monitoring, dissemination and uptake of marine and maritime research", + "topic": "BG-11-2014" +},{ + "projectID": 892517, + "title": "ATM Validation for a Digitalised ATM", + "topic": "SESAR-ER4-26-2019" +},{ + "projectID": 847141, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 970972, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 740369, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 711792, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 637268, + "title": "Energy strategies and solutions for deep renovation of historic buildings", + "topic": "EE-03-2014" +},{ + "projectID": 832460, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 773521, + "title": "Smart fisheries technologies for an efficient, compliant and environmentally friendly fishing sector", + "topic": "SFS-22-2017" +},{ + "projectID": 101002060, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 814276, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101003378, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 826152, + "title": "Communication environment assessment and validation", + "topic": "S2R-OC-IP2-03-2018" +},{ + "projectID": 745855, + "title": "Scaling up in the ocean energy sector to arrays", + "topic": "LCE-15-2016" +},{ + "projectID": 878788, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 860914, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 836937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899528, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 871212, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 691405, + "title": "Transmission grid and wholesale market", + "topic": "LCE-06-2015" +},{ + "projectID": 658327, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 860879, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 685579, + "title": "Low-energy solutions for drinking water production", + "topic": "NMP-24-2015" +},{ + "projectID": 723729, + "title": "Systematic approaches for resource-efficient water management systems in process industries", + "topic": "SPIRE-01-2016" +},{ + "projectID": 876906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781846, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 780255, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 838593, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 745828, + "title": "Emerging technologies for conversion of the organic content of Municipal Solid Waste and improving waste-to-chemicals value chains", + "topic": "BBI-2016-R08" +},{ + "projectID": 775020, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 694807, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 739468, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 966772, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 824886, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 811908, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828172, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 640667, + "title": "New knowledge and technologies", + "topic": "LCE-01-2014" +},{ + "projectID": 667273, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 101030578, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 681031, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 101021417, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 724838, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 874583, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 101003633, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 860303, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 840961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 856592, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 759341, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 116055, + "title": "COORDINATION AND SUPPORT ACTIONS (CSA) FOR THE BIG DATA FOR BETTER OUTCOMES PROGRAMME", + "topic": "IMI2-2015-07-06" +},{ + "projectID": 654990, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 847786, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 101037867, + "title": "EU-wide Covid-19 vaccine trial network", + "topic": "IBA-SC1-CORONAVIRUS-2020-4" +},{ + "projectID": 814316, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 825100, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 840415, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 861190, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 666100, + "title": "Health", + "topic": "Health" +},{ + "projectID": 694717, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 786467, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101016083, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 785908, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 733112, + "title": "Standardisation of pre-analytical and analytical procedures for in vitro diagnostics in personalised medicine", + "topic": "SC1-HCO-02-2016" +},{ + "projectID": 953407, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 725790, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 737560, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 814439, + "title": "Open Innovation Test Beds for Safety Testing of Medical Technologies for Health (IA)", + "topic": "DT-NMBP-02-2018" +},{ + "projectID": 665790, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 683154, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 843088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665735, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 639737, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 115854, + "title": "Vaccine development Phase I, II, and III", + "topic": "IMI2-2014-02-01" +},{ + "projectID": 847939, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 689622, + "title": "Preparatory Phase of ESFRI projects", + "topic": "INFRADEV-2-2015" +},{ + "projectID": 660773, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824292, + "title": "Airworthiness of mass-market drones", + "topic": "MG-2-3-2018" +},{ + "projectID": 681043, + "title": "Towards sustainability and globalisation of the Joint Programming Initiative on Neurodegenerative Diseases", + "topic": "HCO-17-2015" +},{ + "projectID": 793875, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833717, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 862551, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 783211, + "title": "Safe integration of drones", + "topic": "SESAR-VLD1-10-2016" +},{ + "projectID": 763658, + "title": "Aircraft systems", + "topic": "RPAS-03" +},{ + "projectID": 864488, + "title": "Complex cores for CFRP primary structural products manufactured with high pressure RTM", + "topic": "JTI-CS2-2018-CfP09-SYS-02-57" +},{ + "projectID": 874627, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 633168, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 749582, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 693267, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 820591, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 821943, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 675448, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 701467, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 643390, + "title": "National contact points", + "topic": "HCO-16-2014" +},{ + "projectID": 749629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 863337, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 759880, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 956669, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 646130, + "title": "High-definition printing of multifunctional materials", + "topic": "NMP-04-2014" +},{ + "projectID": 682622, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 752019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 951774, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 668353, + "title": "Piloting personalised medicine in health and care systems", + "topic": "PHC-24-2015" +},{ + "projectID": 101016734, + "title": "Neuromorphic computing technologies", + "topic": "FETPROACT-09-2020" +},{ + "projectID": 971398, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 704450, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796388, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 951938, + "title": "Support for European eHealth Interoperability roadmap for deployment", + "topic": "SC1-HCC-07-2020" +},{ + "projectID": 825968, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 715491, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 965313, + "title": "Creation of a European wide sustainable network for harmonised large-scale clinical research studies for infectious diseases", + "topic": "SC1-BHC-35-2020" +},{ + "projectID": 965196, + "title": "Micro- and nano-plastics in our environment: Understanding exposures and impacts on human health", + "topic": "SC1-BHC-36-2020" +},{ + "projectID": 733274, + "title": "Towards an ERA-NET for building sustainable and resilient health system models", + "topic": "SC1-HCO-06-2016" +},{ + "projectID": 897140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 115861, + "title": "Vaccine development Phase I, II, and III", + "topic": "IMI2-2014-02-01" +},{ + "projectID": 964333, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 656086, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818515, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 945246, + "title": "Implementation research for scaling up and transfer of innovative solutions involving digital tools for people-centred care", + "topic": "SC1-DTH-13-2020" +},{ + "projectID": 812772, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 825712, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 853976, + "title": "Determination of gepotidacin levels in tonsils and prostatic tissue", + "topic": "IMI2-2018-16-04" +},{ + "projectID": 666908, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 857188, + "title": "Smart and healthy living at home", + "topic": "DT-TDS-01-2019" +},{ + "projectID": 659256, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 870724, + "title": "Drivers and contexts of violent extremism in the broader MENA region and the Balkans", + "topic": "SU-GOVERNANCE-10-2019" +},{ + "projectID": 862731, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 101035811, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 825925, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 661044, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 726280, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 800176, + "title": "Ebola and other filoviral haemorrhagic fevers (Ebola+) programme: future outbreaks", + "topic": "IMI2-2015-08-01" +},{ + "projectID": 645218, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 641334, + "title": "New knowledge and technologies", + "topic": "LCE-01-2014" +},{ + "projectID": 966782, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 738251, + "title": "EU-Japan cooperation on Novel ICT Robotics based solutions for active and healthy ageing at home or in care facilities", + "topic": "SC1-PM-14-2016" +},{ + "projectID": 871767, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 954931, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 716628, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 856709, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 838861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693337, + "title": "Rethinking the European Union crisis response mechanism in light of recent conflicts", + "topic": "INT-05-2015" +},{ + "projectID": 715575, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 874653, + "title": "Towards a next generation influenza vaccine to protect citizens worldwide – an EU-India collaboration", + "topic": "SC1-BHC-32-2019" +},{ + "projectID": 683356, + "title": "Novel nanomatrices and nanocapsules", + "topic": "NMP-06-2015" +},{ + "projectID": 675610, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 802041, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 687905, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 758848, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 705887, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662107, + "title": "ECSEL Key Applications and Essential Technologies (RIA)", + "topic": "ECSEL-01-2014" +},{ + "projectID": 871252, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 899520, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 847941, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 798591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020676, + "title": "Pre-normative research and demonstration for disaster-resilient societies", + "topic": "SU-DRS03-2018-2019-2020" +},{ + "projectID": 722944, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 846477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647696, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101017140, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 872384, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 748164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 708711, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 666092, + "title": "Health", + "topic": "Health" +},{ + "projectID": 724429, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 745749, + "title": "Demonstration of the most promising advanced biofuel pathways", + "topic": "LCE-19-2016-2017" +},{ + "projectID": 639888, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 679933, + "title": "New adaptable catalytic reactor methodologies for Process Intensification", + "topic": "SPIRE-05-2015" +},{ + "projectID": 657182, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 798371, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656136, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 641100, + "title": "Knowing, doing, being: cognition beyond problem solving", + "topic": "FETPROACT-2-2014" +},{ + "projectID": 708501, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 740113, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 754315, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 655770, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001052, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 887784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707990, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 838280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027589, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 676154, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 714679, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 862721, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101034377, + "title": "Restricted Call to maximise impact of IMI2 JU objectives and scientific priorities", + "topic": "IMI2-2020-22-01" +},{ + "projectID": 657025, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 803740, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101023605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737043, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 852544, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 635568, + "title": "Acoustic and imaging technologies", + "topic": "BG-09-2014" +},{ + "projectID": 707229, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956923, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 896171, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101021866, + "title": "Human factors, and social, societal, and organisational aspects of border and external security", + "topic": "SU-BES01-2018-2019-2020" +},{ + "projectID": 833550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 801653, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 890697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 899477, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 844403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 872631, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 693477, + "title": "Enabling Innovation - Creating Impact from Social Sciences and Humanities", + "topic": "REFLECTIVE-11-2015" +},{ + "projectID": 824418, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 681627, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 875163, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 680004, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 786687, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 792464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802202, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 754510, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 890984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101022001, + "title": "Human factors, and ethical, societal, legal and organisational aspects of using Artificial Intelligence in support of Law Enforcement", + "topic": "SU-AI03-2020" +},{ + "projectID": 788217, + "title": "Integrating Society in Science and Innovation – An approach to co-creation", + "topic": "SwafS-13-2017" +},{ + "projectID": 779303, + "title": "Actions to bridge the divide in European health research and innovation", + "topic": "SC1-HCO-08-2017" +},{ + "projectID": 101022789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754558, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 740922, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 648477, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 677471, + "title": "New adaptable catalytic reactor methodologies for Process Intensification", + "topic": "SPIRE-05-2015" +},{ + "projectID": 814072, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 683933, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 949841, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 759728, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 884760, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 825026, + "title": "Global Alliance for Chronic Diseases (GACD) - Scaling-up of evidence-based health interventions at population level for the prevention and management of hypertension and/or diabetes", + "topic": "SC1-BHC-16-2018" +},{ + "projectID": 841096, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 741774, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 669751, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 955740, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 763912, + "title": "Social Sciences and Humanities Support for the Energy Union", + "topic": "LCE-31-2016-2017" +},{ + "projectID": 101036141, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 641456, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 694345, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 793082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851154, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 794954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101027783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 813713, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 757364, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 819075, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101025890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 713483, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 821423, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 798488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864982, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 842467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774127, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 770019, + "title": "Physical integration of hybrid and electric vehicle batteries at pack level aiming at increased energy density and efficiency", + "topic": "GV-06-2017" +},{ + "projectID": 684365, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 707644, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 858064, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738654, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 845939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 763989, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 680629, + "title": "Recovery technologies for metals and other minerals", + "topic": "SPIRE-07-2015" +},{ + "projectID": 738808, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 723577, + "title": "Systematic approaches for resource-efficient water management systems in process industries", + "topic": "SPIRE-01-2016" +},{ + "projectID": 763977, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 768722, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101023685, + "title": "Demonstrate superior bio-based packaging solutions with minimal environmental damage", + "topic": "BBI-2020-SO3-D4" +},{ + "projectID": 760642, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101028975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 728274, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 668970, + "title": "New sustainable pulping technologies", + "topic": "BBI.VC2.R2" +},{ + "projectID": 778045, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 894100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 950111, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 875613, + "title": "Advanced Redox Flow Batteries for stationary energy storage", + "topic": "LC-BAT-4-2019" +},{ + "projectID": 886967, + "title": "Development of equipment for composite recycling process of uncured material", + "topic": "JTI-CS2-2019-CFP10-AIR-02-86" +},{ + "projectID": 101009511, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 888752, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814505, + "title": "Smart plastic materials with intrinsic recycling properties by design (RIA)", + "topic": "CE-NMBP-26-2018" +},{ + "projectID": 739638, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 849381, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694078, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101022598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 688061, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 735577, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 856555, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 760876, + "title": "Paper-based electronics", + "topic": "PILOTS-05-2017" +},{ + "projectID": 735976, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 768883, + "title": "In-line measurement and control for micro-/nano-enabled high-volume manufacturing for enhanced reliability", + "topic": "FOF-08-2017" +},{ + "projectID": 641747, + "title": "Recycling of raw materials from products and buildings", + "topic": "WASTE-3-2014" +},{ + "projectID": 730480, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 856103, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673303, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 869283, + "title": "Building a water-smart economy and society", + "topic": "CE-SC5-04-2019" +},{ + "projectID": 101003864, + "title": "Improving the sorting, separation and recycling of composite and multi-layer materials", + "topic": "CE-SC5-24-2020" +},{ + "projectID": 720303, + "title": "Conversion of lignin-rich streams from biorefineries", + "topic": "BBI.VC1.R1-2015" +},{ + "projectID": 715634, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 677660, + "title": "Industrial technologies for advanced joining and assembly processes for multi-materials", + "topic": "FoF-12-2015" +},{ + "projectID": 714551, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 828079, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858378, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663742, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 736010, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 820869, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 679692, + "title": "Re-use and remanufacturing technologies and equipment for sustainable product lifecycle management", + "topic": "FoF-13-2015" +},{ + "projectID": 817155, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723582, + "title": "New technologies and strategies for the development of pre-fabricated elements through the reuse and recycling of construction materials and structures", + "topic": "EEB-04-2016" +},{ + "projectID": 101024046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701104, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 895153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 808505, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 684497, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 645696, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 833572, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673275, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 816966, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683698, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 859087, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 872210, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882740, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768731, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 782194, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 685033, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 750764, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656244, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887104, + "title": "Revalorisation of Recycled Carbon Fibers and CFRP preparation through Eco design [ECO]", + "topic": "JTI-CS2-2019-CfP10-ENG-04-08" +},{ + "projectID": 854743, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 820906, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 835709, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814400, + "title": "Smart plastic materials with intrinsic recycling properties by design (RIA)", + "topic": "CE-NMBP-26-2018" +},{ + "projectID": 761458, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 721493, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 833408, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 756165, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 683934, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 760639, + "title": "Improved material durability in buildings and infrastructures, including offshore", + "topic": "NMBP-06-2017" +},{ + "projectID": 101003883, + "title": "Improving the sorting, separation and recycling of composite and multi-layer materials", + "topic": "CE-SC5-24-2020" +},{ + "projectID": 711189, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 101032281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820787, + "title": "Efficient recycling processes for plastic containing materials (IA)", + "topic": "CE-SPIRE-10-2018" +},{ + "projectID": 863431, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 720326, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 766614, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 704852, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750104, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 842339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724436, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 827310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821087, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 768947, + "title": "Protection of all road users in crashes", + "topic": "MG-3.2-2017" +},{ + "projectID": 895337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721536, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 748129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 649767, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2014" +},{ + "projectID": 700542, + "title": "Trust eServices", + "topic": "DS-05-2015" +},{ + "projectID": 832921, + "title": "Human factors, and social, societal, and organisational aspects of border and external security", + "topic": "SU-BES01-2018-2019-2020" +},{ + "projectID": 734712, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 797890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 787198, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 813508, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 754761, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 763240, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 794750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834253, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 861884, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 642201, + "title": "Flexible processing technologies", + "topic": "SC5-11b-2014" +},{ + "projectID": 700044, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 957197, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 834050, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101030300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 806975, + "title": "Development of sensitive and validated clinical endpoints in primary Sjögren’s Syndrome (pSS)", + "topic": "IMI2-2017-12-03" +},{ + "projectID": 675746, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 101015736, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "IBA-SC1-CORONAVIRUS-2020-3" +},{ + "projectID": 116088, + "title": "Ebola and other filoviral haemorrhagic fevers (Ebola+) programme: future outbreaks", + "topic": "IMI2-2015-08-01" +},{ + "projectID": 754907, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 693762, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 754825, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 825922, + "title": "Innovation in healthcare - a CSA towards using pre-commercial procurement and public procurement of innovative solutions in healthcare systems", + "topic": "SC1-HCO-12-2018" +},{ + "projectID": 762128, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 647019, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 723156, + "title": "IoT joint research", + "topic": "EUK-02-2016" +},{ + "projectID": 792153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 812868, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 653618, + "title": "Risk management and assurance models", + "topic": "DS-06-2014" +},{ + "projectID": 956696, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 794108, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101017011, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 859927, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 824251, + "title": "Support for networking activities and impact assessment for road automation", + "topic": "DT-ART-02-2018" +},{ + "projectID": 817680, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 838996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661007, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 879528, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 752195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758671, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 814284, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 724029, + "title": "Euro-African initiative on road safety and traffic management", + "topic": "MG-3.6-2016" +},{ + "projectID": 757290, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 715734, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 721732, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 634890, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 847095, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 668679, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101016167, + "title": "Pan-European COVID-19 cohorts", + "topic": "SC1-PHE-CORONAVIRUS-2020-2D" +},{ + "projectID": 691519, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 101003673, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 650877, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 788191, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 731875, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 883520, + "title": "Pre-normative research and demonstration for disaster-resilient societies", + "topic": "SU-DRS03-2018-2019-2020" +},{ + "projectID": 755170, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 634446, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 101016453, + "title": "International cooperation in smart living environments for ageing people", + "topic": "SC1-DTH-04-2020" +},{ + "projectID": 732163, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 101017549, + "title": "AI for Genomics and Personalised Medicine", + "topic": "DT-TDS-04-2020" +},{ + "projectID": 833435, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 823935, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 887732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 864048, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 645736, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 953426, + "title": "Improving road safety by effectively monitoring working patterns and overall fitness of drivers", + "topic": "MG-2-12-2020" +},{ + "projectID": 856967, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 679747, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 955768, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 745642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101002084, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 894840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 644378, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 803163, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 824964, + "title": "Robotics - Digital Innovation Hubs (DIH)", + "topic": "DT-ICT-02-2018" +},{ + "projectID": 804599, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 779312, + "title": "Methods research for improved health economic evaluation", + "topic": "SC1-PM-20-2017" +},{ + "projectID": 101004226, + "title": "SRC - In-space electrical propulsion and station keeping - Incremental technologies", + "topic": "SPACE-28-TEC-2020" +},{ + "projectID": 101000991, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 740627, + "title": "Integrated tools for response planning and scenario building", + "topic": "SEC-01-DRS-2016" +},{ + "projectID": 766714, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 786670, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 730841, + "title": "Research into enhanced track and switch and crossing system", + "topic": "S2R-CFM-IP3-01-2016" +},{ + "projectID": 658785, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101022113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 727503, + "title": "International Cooperation with South Korea on new generation high-efficiency capture processes", + "topic": "LCE-24-2016" +},{ + "projectID": 101035806, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 804988, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 730562, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 720707, + "title": "Conversion of lignin-rich streams from biorefineries", + "topic": "BBI.VC1.R1-2015" +},{ + "projectID": 722287, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 846679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101006963, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 861570, + "title": "Safety in an evolving road mobility environment", + "topic": "MG-2-7-2019" +},{ + "projectID": 101004331, + "title": "SRC - In-space electrical propulsion and station keeping - Incremental technologies", + "topic": "SPACE-28-TEC-2020" +},{ + "projectID": 101006664, + "title": "Large-scale, cross-border demonstration of connected and highly automated driving functions for passenger cars", + "topic": "DT-ART-06-2020" +},{ + "projectID": 860813, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 861002, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 654438, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 654123, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 690238, + "title": "Digital representation of health data to improve disease diagnosis and treatment", + "topic": "PHC-30-2015" +},{ + "projectID": 860023, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 644571, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 693454, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 680712, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FoF-09-2015" +},{ + "projectID": 857155, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 864803, + "title": "BLI configurations of classical tube and wing aircraft architecture - Wind tunnel tests insight into propulsor inlet distortion and power saving", + "topic": "JTI-CS2-2018-CfP09-LPA-01-58" +},{ + "projectID": 759655, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 769658, + "title": "Aerodynamic and flexible trucks", + "topic": "GV-09-2017" +},{ + "projectID": 777823, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 659933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 861165, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 734798, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 863415, + "title": "UHBR Installed Advanced Nacelle Optimisation and Evaluation Close Coupled to Wing", + "topic": "JTI-CS2-2018-CfP09-LPA-01-67" +},{ + "projectID": 883553, + "title": "Development of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-16-2019" +},{ + "projectID": 101032092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 847612, + "title": "Open data access for fusion research", + "topic": "NFRP-2018-11" +},{ + "projectID": 730135, + "title": "SRC - In-Space electrical propulsion and station keeping - Incremental Technologies", + "topic": "COMPET-3-2016-a" +},{ + "projectID": 753736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 813236, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 824309, + "title": "Testing, validation and certification procedures for highly automated driving functions under various traffic scenarios based on pilot test data", + "topic": "DT-ART-01-2018" +},{ + "projectID": 766231, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 955839, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 825430, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 688993, + "title": "Raw materials partnerships", + "topic": "WASTE-4d-2015" +},{ + "projectID": 788829, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 951308, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 789410, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 727497, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 888913, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 883511, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 742339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 951782, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 831798, + "title": "Thermo-mechanical design validation of compact heat exchanger by thermal cycling life prediction", + "topic": "JTI-CS2-2018-CfP08-LPA-01-52" +},{ + "projectID": 818457, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 757314, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 649666, + "title": "Development and market roll-out of innovative energy services and financial schemes for sustainable energy", + "topic": "EE-21-2014" +},{ + "projectID": 746358, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740611, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101022186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 821159, + "title": "New technologies for the enhanced recovery of by-products", + "topic": "CE-SC5-06-2018" +},{ + "projectID": 950427, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 804095, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 817492, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101001458, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 674109, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 875999, + "title": "ECSEL-2019-1-IA", + "topic": "ECSEL-2019-1-IA" +},{ + "projectID": 710216, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 638957, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101028122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870626, + "title": "Digitisation, Digital Single Market and European culture: new challenges for creativity, intellectual property rights and copyright", + "topic": "DT-GOVERNANCE-13-2019" +},{ + "projectID": 681346, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682402, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 949050, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 793204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 860721, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 741782, + "title": "Mapping the Ethics and Research Integrity Normative Framework", + "topic": "SwafS-16-2016" +},{ + "projectID": 864055, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 752773, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688441, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 878035, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673436, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 833647, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 775417, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 867454, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 717791, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 949981, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 882577, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700197, + "title": "Information management topic 2: Information management, systems and infrastructure for civilian EU External Actions", + "topic": "BES-11-2015" +},{ + "projectID": 872499, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 727301, + "title": "Increasing digital security of health related data on a systemic level", + "topic": "DS-03-2016" +},{ + "projectID": 101026873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 639227, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 655748, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007984, + "title": "Development and execution of new test methods for thermoset panel manufactured in an automated tape layup of dry unidirectional fibres (UD) or non-crimped fabrics (NCF) and subsequent infusion", + "topic": "JTI-CS2-2020-CFP11-AIR-03-11" +},{ + "projectID": 781707, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 725238, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 686530, + "title": "Support to the aerodynamic and aeroelastic analysis of a trimmed, complete compound R/C and related issues", + "topic": "JTI-CS2-2014-CFP01-FRC-02-01" +},{ + "projectID": 101022180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 744397, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 780602, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 682152, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 845756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833222, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 808000, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 723515, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 819877, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 842504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 757400, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 729786, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 853368, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101002392, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 855443, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 801055, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 665958, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 655457, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101033809, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 839611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679924, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716562, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 656848, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831364, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 725977, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 817719, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 640798, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 839749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 866421, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101001991, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 713682, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 789596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 714597, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 681575, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 694697, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 884584, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 842553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644344, + "title": "Human-centric Digital Age", + "topic": "ICT-31-2014" +},{ + "projectID": 101024836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948473, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 825263, + "title": "Robotics - Digital Innovation Hubs (DIH)", + "topic": "DT-ICT-02-2018" +},{ + "projectID": 101026373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681838, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 739768, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 795956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 814035, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 965422, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 656047, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 886232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695405, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 877811, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644077, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 726840, + "title": "Understanding the transformation of European public administrations", + "topic": "CULT-COOP-11-2016-2017" +},{ + "projectID": 715467, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 647413, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 837857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 801076, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 690705, + "title": "Safe and connected automation in road transport", + "topic": "MG-3.6a-2015" +},{ + "projectID": 670578, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 794368, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 804815, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 850899, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 781574, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 870978, + "title": "Enhancing social rights and EU citizenship", + "topic": "GOVERNANCE-04-2019" +},{ + "projectID": 658784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 789758, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 683359, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 952410, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 649727, + "title": "Empowering stakeholders to assist public authorities in the definition and implementation of sustainable energy policies and measures", + "topic": "EE-09-2014" +},{ + "projectID": 857269, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 750832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 653040, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 834759, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 750887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647648, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 838965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101002898, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 822585, + "title": "Social platform on endangered cultural heritage and on illicit trafficking of cultural goods", + "topic": "SU-TRANSFORMATIONS-09-2018" +},{ + "projectID": 101000020, + "title": "Presidency events- Croatia", + "topic": "IBA-SC6-Croatia-Presidency-2019" +},{ + "projectID": 701075, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 675866, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 638647, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 733531, + "title": "Centres/Networks of European research and innovation", + "topic": "ENG-GLOBALLY-09-2016" +},{ + "projectID": 101028203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027911, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 681044, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 101024926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825669, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 704626, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802891, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 707848, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 893118, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 893147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645099, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 743055, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101024972, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 780601, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 101019167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708448, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101022647, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660608, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101017450, + "title": "Supporting deployment of eHealth in low and lower middle income countries in Africa for better health outcomes", + "topic": "SC1-HCC-09-2020" +},{ + "projectID": 676536, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 101026972, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 701698, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101028401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 673710, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 658724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707652, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 699538, + "title": "SCIENCE WAF SOCIETY", + "topic": "SCIENCE WAF SOCIETY" +},{ + "projectID": 804761, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 771736, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 649454, + "title": "Social Platform on Reflective Societies", + "topic": "REFLECTIVE-9-2014" +},{ + "projectID": 767738, + "title": "Presidency events", + "topic": "NMBP-31-2017" +},{ + "projectID": 688356, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 845342, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759897, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 699631, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 776692, + "title": "Closing the water gap", + "topic": "SC5-33-2017" +},{ + "projectID": 101029810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715940, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 792306, + "title": "Improving access by innovative SMEs to alternative forms of finance", + "topic": "ALTFI-01-2017" +},{ + "projectID": 688203, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 678081, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101014540, + "title": "Evolution of Railways System Architecture and Conceptual Data Model (CDM)", + "topic": "S2R-CFM-IPX-CCA-02-2020" +},{ + "projectID": 101026163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 814557, + "title": "Catalytic transformation of hydrocarbons (RIA)", + "topic": "CE-NMBP-24-2018" +},{ + "projectID": 958307, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 763655, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 686647, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101003555, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 660655, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 792880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786602, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 754513, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 956009, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 825082, + "title": "Internet of Things", + "topic": "ICT-27-2018-2020" +},{ + "projectID": 886092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 661505, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 813391, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 821410, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 955625, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 817863, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 707663, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 803096, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 894936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793086, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 675044, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 751089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899619, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 703986, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 874807, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 893123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 953442, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 732240, + "title": "Large Scale Pilots", + "topic": "IoT-01-2016" +},{ + "projectID": 892905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 652654, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2014" +},{ + "projectID": 675278, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101006012, + "title": "The ethics of organoïds", + "topic": "SwafS-28-2020" +},{ + "projectID": 842640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731656, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 948838, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101036418, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 635577, + "title": "Sustainable food and nutrition security through evidence based EU agro-food policy", + "topic": "SFS-19-2014" +},{ + "projectID": 786476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 817626, + "title": "Anti-microbials and animal production", + "topic": "SFS-11-2018-2019" +},{ + "projectID": 754740, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 799779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 818890, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101035814, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 753962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 773554, + "title": "Functional biodiversity – productivity gains through functional biodiversity: effective interplay of crop pollinators and pest predators", + "topic": "SFS-28-2017" +},{ + "projectID": 101000344, + "title": "Husbandry for quality and sustainability", + "topic": "FNR-05-2020" +},{ + "projectID": 679266, + "title": "Response capacities to oil spills and marine pollutions", + "topic": "BG-07-2015" +},{ + "projectID": 797925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101006514, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 817683, + "title": "Towards healthier and sustainable food", + "topic": "SFS-16-2018" +},{ + "projectID": 706867, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 822259, + "title": "Supply and demand-oriented economic policies to boost robust growth in Europe – Addressing the social and economic challenges in Europe", + "topic": "TRANSFORMATIONS-14-2018" +},{ + "projectID": 948264, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 801367, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 823860, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 894551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 713475, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101024664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707818, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 660894, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 642190, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 945391, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 638730, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 952156, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 866240, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101028448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958310, + "title": "Digital Building Twins (RIA)", + "topic": "LC-EEB-08-2020" +},{ + "projectID": 948788, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 950386, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 785902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 687409, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2015" +},{ + "projectID": 773311, + "title": "Research and approaches for emerging diseases and pests in plants and terrestrial livestock", + "topic": "SFS-10-2017" +},{ + "projectID": 652635, + "title": "Networking of Bioeconomy relevant ERA-NETs", + "topic": "ISIB-10-2014" +},{ + "projectID": 657041, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 850404, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 897733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 825753, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 875605, + "title": "Advanced Redox Flow Batteries for stationary energy storage", + "topic": "LC-BAT-4-2019" +},{ + "projectID": 871944, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101017304, + "title": "Boost rural economies through cross-sector digital service platforms", + "topic": "DT-ICT-09-2020" +},{ + "projectID": 660339, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 709517, + "title": "Supporting structural change in research organisations to promote Responsible Research and Innovation", + "topic": "ISSI-5-2015" +},{ + "projectID": 693289, + "title": "Emergence and transmission of European cultural heritage and Europeanisation", + "topic": "REFLECTIVE-2-2015" +},{ + "projectID": 802244, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 792042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 639560, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 894506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101005259, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 666004, + "title": "Responsible Research and Innovation in Higher Education Curricula", + "topic": "SEAC-2-2014" +},{ + "projectID": 694988, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 753597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 667400, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 643309, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 865738, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 764985, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 965381, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 853356, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 646533, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 765703, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101029380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758461, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101006912, + "title": "Combined clean biofuel production and phytoremediation solutions from contaminated lands worldwide", + "topic": "LC-SC3-RES-37-2020" +},{ + "projectID": 818011, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 656437, + "title": "Demonstrating advanced biofuel technologies", + "topic": "LCE-12-2014" +},{ + "projectID": 760277, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101006873, + "title": "Combined clean biofuel production and phytoremediation solutions from contaminated lands worldwide", + "topic": "LC-SC3-RES-37-2020" +},{ + "projectID": 817999, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 739632, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 857839, + "title": "Boosting pre-commercial production of advanced aviation biofuels", + "topic": "LC-SC3-RES-24-2019" +},{ + "projectID": 719885, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 752491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 640462, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2014" +},{ + "projectID": 101002649, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 764675, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 678012, + "title": "Biological contamination of crops and the food chain", + "topic": "SFS-13-2015" +},{ + "projectID": 877090, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723641, + "title": "Industrial furnace design addressing energy efficiency in new and existing furnaces", + "topic": "SPIRE-04-2016" +},{ + "projectID": 745810, + "title": "Demonstration of the most promising advanced biofuel pathways", + "topic": "LCE-19-2016-2017" +},{ + "projectID": 654010, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2015" +},{ + "projectID": 727958, + "title": "The regional dimension of bio-based industries", + "topic": "BB-06-2016" +},{ + "projectID": 101021538, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 739761, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 769974, + "title": "Optimisation of heavy duty vehicles for alternative fuels use", + "topic": "GV-01-2017" +},{ + "projectID": 666346, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014" +},{ + "projectID": 648433, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 896228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 652506, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 648855, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 845218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 852050, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 820771, + "title": "Energy and resource flexibility in highly energy intensive industries (IA 50%)", + "topic": "CE-SPIRE-03-2018" +},{ + "projectID": 745967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 708175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 729112, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 899275, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101033593, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708106, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101033361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 851740, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 749213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706410, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 685114, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 658645, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 681647, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 897880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 744429, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 859065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 955335, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101018840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958776, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 709452, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 101030421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 736783, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 712721, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 864625, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 882536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 775240, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 786027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 960141, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 896229, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855154, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 665633, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 845488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 665712, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 955431, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 820716, + "title": "Processing of material feedstock using non-conventional energy sources (IA)", + "topic": "CE-SPIRE-02-2018" +},{ + "projectID": 720506, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 817286, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865724, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101027372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694340, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 795249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657497, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 641272, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 660081, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 745608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702084, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704123, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 687866, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 953716, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 721290, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 665113, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 674231, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 101031163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101000967, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 681514, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 673865, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 709270, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 760380, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 801965, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 783132, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 946048, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 829492, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 706372, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819261, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 695913, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 659317, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 828978, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 754509, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 894697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 757800, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 753788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101022402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656428, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 683405, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 743441, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 948689, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 752533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 835791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679342, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 654603, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701590, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731877, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 663065, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 636494, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 864016, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 679228, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 656712, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101030887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772786, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 899742, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101000180, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 899555, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 955891, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 757958, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 778998, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 758064, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 665148, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 851810, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 850915, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 681421, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 758053, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 846073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 715496, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 678919, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 832606, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 679213, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 665347, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 830294, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002460, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 697235, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 677169, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 807687, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 835683, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639221, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 761513, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 969116, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814413, + "title": "Osteoarticular tissues regeneration (RIA)", + "topic": "NMBP-22-2018" +},{ + "projectID": 820587, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 787413, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 768260, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 678674, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 719570, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 788296, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 694328, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 952118, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 892718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884217, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 648236, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 658073, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864950, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 772195, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101002219, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 898074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817021, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 792727, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725456, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 670949, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 679649, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 802729, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 865877, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 708129, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 694097, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 754481, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 800942, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 734690, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 664738, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 772108, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 766955, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 704672, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841618, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 963391, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 773122, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101025918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 813242, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 899634, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 866365, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 648011, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 641280, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101023787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820033, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 789056, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 705713, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655701, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 862683, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101002107, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 638528, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 679183, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 852045, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 851780, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 705161, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 947707, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 801847, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 669288, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 750017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677470, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 799408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949043, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 741767, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 805038, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 689878, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 694709, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 646734, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 805225, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 816137, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745047, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 840958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863127, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 736943, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 788890, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 865175, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 820196, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 647121, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 896932, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 746843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 950402, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 848827, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804213, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 669442, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 952603, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 888939, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 707438, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772735, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 843800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 853022, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101031549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787472, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 684096, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 658352, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789104, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 680886, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 714893, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705960, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820391, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 725920, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 837928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001024, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 661191, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101025621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 757397, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 802791, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101028945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001814, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 851960, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 894434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660732, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 669253, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 789463, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 715939, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 648927, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701915, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101028693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702525, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715770, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 844591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948265, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852694, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 695188, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101023743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 757733, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 705467, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704998, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 636744, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 835306, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 657599, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714876, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 840791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820365, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 724707, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 771850, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 765075, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 648575, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 836751, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701154, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 730161, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2016" +},{ + "projectID": 808987, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 865230, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865306, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 872196, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 757258, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 686731, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 706552, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840968, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 639643, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 841351, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 771493, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771049, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 832219, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 822070, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 759388, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 669550, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101020259, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 660657, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 828922, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 661024, + "title": "Health", + "topic": "Health" +},{ + "projectID": 946192, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 844732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 856620, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 101017453, + "title": "AI for Genomics and Personalised Medicine", + "topic": "DT-TDS-04-2020" +},{ + "projectID": 101003386, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 844677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 697419, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 804233, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 656778, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747586, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 668983, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 678109, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 759579, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 708036, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 710938, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 853433, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 703100, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 779105, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 637843, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 661271, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 680882, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 796606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 657088, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 750557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 882247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693680, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 673225, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 868629, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719002, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 714738, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 737467, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 660953, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 845349, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 805201, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 886470, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 756762, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 766850, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 947344, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654761, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 893560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 951933, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 868807, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718119, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 101029014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866888, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876691, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703521, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 893784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645634, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 897300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 780659, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 824071, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 672454, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 827197, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823126, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705219, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 848682, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683658, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 694913, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 899792, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 698585, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 808576, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 703611, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 672641, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 737964, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101030691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 783506, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 880328, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677251, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 786692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867162, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101005075, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 703789, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 665456, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 765492, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 867916, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 755347, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 742437, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 772487, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 758657, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 817908, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101030046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640567, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 791055, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 819329, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 885973, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781647, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 682161, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 801113, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 659166, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 677713, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 741269, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 787462, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 682206, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 716265, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 952259, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101001288, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 683258, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 953234, + "title": "Next generation organ-on-chip (RIA-LS)", + "topic": "DT-NMBP-23-2020" +},{ + "projectID": 862113, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 755460, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 764837, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 671231, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101030034, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 757339, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 722634, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101024231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825872, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 843630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 771704, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 849251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 662861, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 698263, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 889591, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867928, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842452, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 879814, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 716867, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 954904, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763090, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 836361, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004770, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 832147, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673561, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 807269, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 736269, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 851122, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 737612, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 647067, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 880194, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823184, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878719, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 810850, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 735144, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 957500, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 956900, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 796672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741350, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 684079, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 855288, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 707618, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 834974, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 845645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 960129, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779293, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 735223, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 815657, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741149, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101017523, + "title": "Accelerating the uptake of computer simulations for testing medicines and medical devices", + "topic": "SC1-DTH-06-2020" +},{ + "projectID": 867540, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855109, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 781889, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 768197, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 683485, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 807274, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 793419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 680420, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 832168, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719445, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 961127, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 695069, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 840568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 761509, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 832430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945945, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 691051, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 893760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 850358, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867628, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728915, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 752097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727408, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 656816, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639548, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 658478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681243, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 673447, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 694189, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693303, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 643535, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 656990, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 698630, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 671704, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 891741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 832820, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888193, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673737, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 709104, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 877740, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705422, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 790435, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 705614, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835987, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816466, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654963, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 778325, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 642760, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 751106, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 878065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 840786, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 790666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 729703, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 828547, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 749108, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 798244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702577, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866494, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 812002, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 704779, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 763781, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 716220, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 805338, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 819894, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101030683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 741167, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 694455, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 789267, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 787925, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 677909, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 796084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815056, + "title": "5G and beyond", + "topic": "EUJ-02-2018" +},{ + "projectID": 682001, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 820185, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 710564, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 887401, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 900008, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 886496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 879817, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 661734, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 836167, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877036, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817116, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 884699, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 950943, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 869922, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 680908, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 894325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 713660, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 708973, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 782483, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 843408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 668648, + "title": "Promoting mental wellbeing in the ageing population", + "topic": "PHC-22-2015" +},{ + "projectID": 791760, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 637164, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 945729, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 860185, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 727534, + "title": "PCP - eHealth innovation in empowering the patient", + "topic": "SC1-PM-12-2016" +},{ + "projectID": 788196, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 835767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 673955, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 884597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 857894, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 877406, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 671970, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 796599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799002, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 710537, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 701411, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731623, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 713503, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 678461, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 741888, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 742432, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 733288, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 731532, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 755333, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 960768, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691238, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 830574, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643130, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 641156, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 657685, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 954909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767572, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 793071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877385, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685872, + "title": "Novel nanomatrices and nanocapsules", + "topic": "NMP-06-2015" +},{ + "projectID": 759001, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 766012, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 640579, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 884623, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101001448, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 843838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 739822, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 827202, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698460, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 858757, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737164, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 889980, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781853, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 101026785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 791323, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 787171, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 874596, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 737539, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 948170, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101002453, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101003021, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 651158, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 955956, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 752074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 731366, + "title": "Coordinating personalised medicine research", + "topic": "SC1-HCO-05-2016" +},{ + "projectID": 805143, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101016442, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 866548, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101031809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787414, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 747866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 797491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 810111, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 824109, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 956099, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 839269, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 682529, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 859416, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 817501, + "title": "Analytical tools and models to support policies related to agriculture and food", + "topic": "RUR-04-2018-2019" +},{ + "projectID": 825730, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 793221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646075, + "title": "Biomaterials for the treatment of diabetes mellitus", + "topic": "NMP-10-2014" +},{ + "projectID": 656767, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 702304, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840636, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 840453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 653316, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 694033, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 818806, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 825579, + "title": "Research on HIV, tuberculosis (TB) and/or hepatitis C (HCV) in patients with mono-, co-infections and/or comorbidities in the context of fostering collaboration with the Russian Federation", + "topic": "SC1-BHC-21-2018" +},{ + "projectID": 795286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875610, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 820393, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 676675, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 860613, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 750812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 850769, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 891443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865840, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 852821, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 757725, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 756365, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 792853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 792076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789328, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 843974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 764920, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 812830, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 838326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 964568, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 716139, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 742987, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 757991, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 772391, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 647275, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 726396, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101021024, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 752435, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 824017, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 832994, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 810856, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 648026, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 722390, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 840243, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 856446, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 899576, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 751509, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 634674, + "title": "Novel marine derived biomolecules and industrial biomaterials", + "topic": "BG-03-2014" +},{ + "projectID": 760798, + "title": "Optimisation of biocatalysis and downstream processing for the sustainable production of high value-added platform chemicals", + "topic": "BIOTEC-06-2017" +},{ + "projectID": 101032077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789503, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948366, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 883371, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 966785, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101017727, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 101025132, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789058, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 803122, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 781138, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 893914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714599, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 843437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 723011, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 810105, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 797138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101017779, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 963903, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 838926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 774928, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 891653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659553, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 870769, + "title": "Drivers and contexts of violent extremism in the broader MENA region and the Balkans", + "topic": "SU-GOVERNANCE-10-2019" +},{ + "projectID": 818464, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 786629, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 872814, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 643783, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 644101, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 702562, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818757, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 854490, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834638, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 647234, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 949485, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 755175, + "title": "Promoting mental health and well-being in the young", + "topic": "SC1-PM-07-2017" +},{ + "projectID": 693426, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 693857, + "title": "Emergence and transmission of European cultural heritage and Europeanisation", + "topic": "REFLECTIVE-2-2015" +},{ + "projectID": 890675, + "title": "Advancing nuclear education", + "topic": "NFRP-2019-2020-11" +},{ + "projectID": 874454, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 748788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101022703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 966795, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 833672, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 897489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707730, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835567, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 777636, + "title": "Future stations and accessibility (IP1 and IP3)", + "topic": "S2R-OC-IP3-02-2017" +},{ + "projectID": 878873, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 750618, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 696246, + "title": "INNOVATION-02 for SGA EEN", + "topic": "INNOVATION-2015-02" +},{ + "projectID": 755129, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 665066, + "title": "Advanced 3D modelling for accessing and understanding European cultural assets", + "topic": "REFLECTIVE-7-2014" +},{ + "projectID": 690893, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 965731, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 800259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772193, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 876712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 722940, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 700540, + "title": "Value-sensitive technological innovation in Cybersecurity", + "topic": "DS-07-2015" +},{ + "projectID": 101035821, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 850752, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 722790, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 811561, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 782268, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 694145, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 645668, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 818744, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 842991, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746054, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 811853, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850754, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 727688, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 678790, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 637768, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 744432, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 894029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 750348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 692257, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 769504, + "title": "European cultural heritage, access and analysis for a richer interpretation of the past.", + "topic": "CULT-COOP-09-2017" +},{ + "projectID": 771738, + "title": "Building a future science and education system fit to deliver to practice", + "topic": "RUR-13-2017" +},{ + "projectID": 792600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 747069, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101031632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 815553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894719, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 873134, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 101028117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 762111, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 832662, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 812167, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672124, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 892794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870827, + "title": "Societal challenges and the arts", + "topic": "TRANSFORMATIONS-17-2019" +},{ + "projectID": 894589, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875272, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 656528, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 862644, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 748452, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101032280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 822245, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 665134, + "title": "Coordination and Support Activities", + "topic": "FETOPEN-2-2014" +},{ + "projectID": 811319, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703201, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 819526, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 702628, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 675730, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 633344, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 101026813, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 700583, + "title": "Conflict prevention and peace building topic 2: Training curricula for Conflict Prevention and Peace Building personnel", + "topic": "BES-13-2015" +},{ + "projectID": 768530, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 801980, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 856275, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833496, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 101016127, + "title": "Behavioural, social and economic impacts of the outbreak response", + "topic": "SC1-PHE-CORONAVIRUS-2020-2C" +},{ + "projectID": 852815, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101030156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 732287, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 872106, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 680172, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 701269, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 676448, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 755719, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 838537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 745888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 666669, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 872246, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 788547, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 724300, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 734227, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 798067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 742989, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101003412, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 868221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769627, + "title": "Reducing aviation noise", + "topic": "MG-1-2-2017" +},{ + "projectID": 692058, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 952043, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 723386, + "title": "Behavioural aspects for safer transport", + "topic": "MG-3.5-2016" +},{ + "projectID": 771355, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 770348, + "title": "Education and skills: empowering Europe’s young innovators", + "topic": "CO-CREATION-01-2017" +},{ + "projectID": 725046, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 786643, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 893787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 763132, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101028918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 647943, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 644964, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 845343, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786142, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 657505, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 690954, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101024871, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660607, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101026011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834302, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 819086, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 835431, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700913, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661025, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816564, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 797338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 713697, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 735639, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101021714, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 749988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 692694, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 818486, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 731685, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 830754, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 641789, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 764191, + "title": "European Union Contest for Young Scientists (EUCYS) 2017", + "topic": "IBA-SWFS-EUCYS-2017" +},{ + "projectID": 688014, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 695528, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 842334, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701911, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 633317, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 695524, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101027432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677742, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 804907, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 846478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742345, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 707537, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 791804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945238, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 803498, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 890677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 868847, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705044, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 853271, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 672001, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014" +},{ + "projectID": 750596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 670757, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 851940, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 890615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 815679, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808892, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101025945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002584, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101028715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 691004, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 894111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777720, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 740548, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 734989, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 700925, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 698871, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 648228, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 859869, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 848147, + "title": "Implementation research for maternal and child health", + "topic": "SC1-BHC-19-2019" +},{ + "projectID": 101001284, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 864182, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101016216, + "title": "Networking of existing EU and international cohorts of relevance to COVID-19", + "topic": "SC1-PHE-CORONAVIRUS-2020-2E" +},{ + "projectID": 101027394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 676868, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 721895, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 961665, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818843, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101023445, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694822, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 656099, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659759, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742576, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 633219, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 702466, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 875410, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101020985, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 808713, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 792994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656333, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 899779, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 645666, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 685313, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 661134, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 731590, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 897440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101005931, + "title": "Hands-on citizen science and frugal innovation", + "topic": "SwafS-27-2020" +},{ + "projectID": 682156, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 731900, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 872082, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 753071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 780453, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101027405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659680, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 949010, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 749778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700180, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 753531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 782921, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 101027399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773301, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 672619, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 640862, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 696939, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 682349, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 834087, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 841440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 786587, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 832674, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 852885, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 688117, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 656881, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692103, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 778043, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 951978, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 727145, + "title": "Fighting inequalities through policies against tax fraud and tax evasion", + "topic": "REV-INEQUAL-08-2016" +},{ + "projectID": 744835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864584, + "title": "Smart Active Inceptors System definition for Tilt Rotor application", + "topic": "JTI-CS2-2018-CFP09-FRC-01-25" +},{ + "projectID": 742545, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 891936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870691, + "title": "The societal value of culture and the impact of cultural policies in Europe", + "topic": "TRANSFORMATIONS-08-2019" +},{ + "projectID": 948557, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101024254, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 833353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 831000, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 892979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 678908, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101025620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 644051, + "title": "Advanced digital gaming/gamification technologies", + "topic": "ICT-21-2014" +},{ + "projectID": 803051, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 839483, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758600, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 841355, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727521, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 707918, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832576, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 892715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754919, + "title": "Promoting mental health and well-being in the young", + "topic": "SC1-PM-07-2017" +},{ + "projectID": 664800, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 803194, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 845119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101019584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 732117, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 892293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 833849, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 761329, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 869379, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 747902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885905, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836707, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761974, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 890641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749206, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 868436, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 709151, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770839, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 785125, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 845071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 842219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661338, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101030794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 812719, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 729583, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 699379, + "title": "High Performing Airport Operations", + "topic": "Sesar-06-2015" +},{ + "projectID": 101025547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694779, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101029362, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730038, + "title": "SRC - In-Space electrical propulsion and station keeping - Disruptive Technologies", + "topic": "COMPET-3-2016-b" +},{ + "projectID": 654175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007973, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 874700, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 714519, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 899293, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 965945, + "title": "New biotechnologies to remediate harmful contaminants (RIA)", + "topic": "CE-BIOTEC-08-2020" +},{ + "projectID": 751164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706028, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 668142, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 794400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758794, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 740021, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 766853, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 655204, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 899205, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101037009, + "title": "Closing the industrial carbon cycle to combat climate change - Industrial feasibility of catalytic routes for sustainable alternatives to fossil resources", + "topic": "LC-GD-3-1-2020" +},{ + "projectID": 894963, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 675251, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 692477, + "title": "Smart Mobility", + "topic": "ECSEL-01-2015" +},{ + "projectID": 686141, + "title": "Novel nanomatrices and nanocapsules", + "topic": "NMP-06-2015" +},{ + "projectID": 690945, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 896544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101001689, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 801660, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 786566, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 676999, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 642976, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 655777, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661645, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742573, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 757173, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 841157, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001678, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101027016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 805094, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 793058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101021500, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 725419, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 792215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 856961, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 796514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758382, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 883325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853619, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101026295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840189, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 842296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694677, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 647292, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 865711, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 812777, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 786672, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 704283, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852201, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101032710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820292, + "title": "Preparatory Actions for new FET Flagships", + "topic": "FETFLAG-01-2018" +},{ + "projectID": 757398, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 658592, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793227, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 818943, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 733552, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 754308, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 750190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 747948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734969, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 659130, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019146, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 646868, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 834446, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 759731, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 894935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637488, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638106, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 787768, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 793795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 651145, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 764332, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 825508, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 842535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 709248, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 893131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 639234, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 804679, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101030179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834682, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 835954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759853, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 715980, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 945196, + "title": "Improving low-dose radiation risk appraisal in medicine", + "topic": "NFRP-2019-2020-14" +},{ + "projectID": 857491, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 859458, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 725722, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 792957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 823895, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 706557, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 834154, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 866448, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 680913, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 749845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777835, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101003392, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 894425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703584, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 638428, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 642458, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 753221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 889397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725492, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 966753, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 714922, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 688279, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 706296, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836091, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 692322, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 648428, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 799037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 665671, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101016923, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 945118, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 708694, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647057, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 845083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 875975, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680209, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 963884, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 949080, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 705826, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 950101, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 862580, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 658897, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101032288, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 763700, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 708125, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101020262, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 828837, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 704763, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 807889, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 677006, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101023262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660219, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657835, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 641458, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 851470, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 796143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656264, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771431, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 793550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692180, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 758967, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 854796, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 945674, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 843499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 952304, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 945385, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 763823, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 846787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 633595, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 747338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949812, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 894990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 971225, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 761702, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 753058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 762368, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 638603, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 660205, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 858849, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657286, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 861878, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 744389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 695446, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 637047, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 795060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 883003, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674038, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 689691, + "title": "Self management of health and disease and decision support systems based on predictive computer modelling used by the patient him or herself", + "topic": "PHC-28-2015" +},{ + "projectID": 753567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 957512, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 836529, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703594, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819775, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 898737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731944, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 841428, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 950219, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 898170, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 758735, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 880750, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 748381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101000160, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 646701, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 803992, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 647973, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 899334, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 790668, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 856235, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 844712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 679681, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 826755, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945897, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016909, + "title": "AI for the smart hospital of the future", + "topic": "DT-ICT-12-2020" +},{ + "projectID": 743435, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703374, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 880718, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 746976, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 644175, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 829218, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101032702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715048, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 745109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752869, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658490, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 709010, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839325, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 808316, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 707093, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802773, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 807265, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 852343, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 669622, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 813081, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101008134, + "title": "Proton versus photon therapy for oesophageal cancer - a trimodality strategy", + "topic": "IMI2-2020-20-05" +},{ + "projectID": 864219, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 882963, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 658351, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 811360, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101000948, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 765394, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101015941, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 714162, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 739692, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 682741, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 708495, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 735669, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 799378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 640942, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 856529, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 789970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 883425, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 961442, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694160, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 780915, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 897309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 648145, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 871324, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 865375, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 780519, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 758457, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 952438, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 895819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817997, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 694502, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 880603, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834634, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 713551, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 782419, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 705015, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 837088, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788301, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 713727, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 810653, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 680889, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 707123, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 868601, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 791476, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 741989, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 814638, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655864, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 667980, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 640511, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 639429, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 661010, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 793702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 767092, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 945011, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 872860, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 957563, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 849027, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 786575, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 945052, + "title": "Establishing international standards in the analysis of patient reported outcomes and health-related quality of life data in cancer clinical trials", + "topic": "IMI2-2019-18-04" +},{ + "projectID": 876715, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 693436, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 960914, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837601, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892360, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 882918, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759296, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 707525, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759532, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 884754, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 738707, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 658902, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816708, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825821, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 646364, + "title": "Scale-up of nanopharmaceuticals production", + "topic": "NMP-08-2014" +},{ + "projectID": 825806, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 715890, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 846806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 768166, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 696293, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 835227, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 682663, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 790400, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 865629, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 708860, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 798565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101025789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 813284, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 863955, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 878376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829416, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711330, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 754320, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 945393, + "title": "Supporting the development of engineered T cells", + "topic": "IMI2-2019-18-06" +},{ + "projectID": 851055, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 773208, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 884796, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 861677, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 887609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817938, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 840120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 957075, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 839499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 718397, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 702430, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794803, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864759, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 638891, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 660985, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 693433, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 945153, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 866986, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001971, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 820137, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 725172, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101001789, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 695376, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 857502, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 658334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 765104, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 840767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714680, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 966693, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 749087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 802615, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788152, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101019891, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 873401, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 812729, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 694354, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 750689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 644242, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 660034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 756017, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 771829, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 657189, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658665, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 725038, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 951921, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 772752, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 844696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101016087, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 729737, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 668769, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 660883, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 759590, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 707951, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852761, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 825859, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 899932, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 882617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701691, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704120, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 648766, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101032145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101008072, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 725539, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 850974, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 852614, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 885874, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 721317, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 825722, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 724872, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101032769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 819424, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 660125, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 817884, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 677200, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 862089, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 692293, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 949667, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 844776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 874966, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 883146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 861889, + "title": "Grant to the Global Alliance for Chronic Diseases", + "topic": "IBA-SC1-GACD-2018" +},{ + "projectID": 701143, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 895139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 754453, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101019807, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 638028, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 725840, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 704817, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 725701, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 682118, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101024100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637765, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 842592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716290, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 655278, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101034439, + "title": "Restricted Call to maximise impact of IMI2 JU objectives and scientific priorities", + "topic": "IMI2-2020-22-01" +},{ + "projectID": 714774, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 655350, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771057, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 785910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724226, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 835184, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101002391, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 799101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 714731, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101027750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957444, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101018670, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 765269, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 737557, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 835533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658849, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 966856, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 701646, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 649024, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 741306, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 800489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001623, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 899259, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 634942, + "title": "Synthetic biology – construction of organisms for new products and processes", + "topic": "BIOTEC-1-2014" +},{ + "projectID": 852178, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 772390, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 708362, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 749463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703379, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724824, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 638810, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 750766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 739778, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 838673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 694707, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 747539, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638718, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 865101, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 682473, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 835379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 833866, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 752806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803932, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 656697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 862524, + "title": "Agri-Aqua Labs", + "topic": "SFS-30-2018-2019-2020" +},{ + "projectID": 706196, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 947636, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 819642, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 705354, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681484, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 851006, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 840414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 645674, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 101033244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787074, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 657918, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 704319, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 838242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 952583, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 823746, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 794458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677379, + "title": "Management and sustainable use of genetic resources", + "topic": "SFS-07b-2015" +},{ + "projectID": 771376, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 704920, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770992, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 666400, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 654699, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 725998, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 751216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707109, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 669982, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 742046, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 655392, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839566, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704299, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660396, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 788681, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 680156, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 948172, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 661656, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 680037, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 804994, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 787613, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 852558, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 892487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703380, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772505, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 637587, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 947803, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 655732, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 864203, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 678757, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 851753, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702327, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715727, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 872539, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 724863, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 842234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693174, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 752717, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 679056, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 657852, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001341, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 817811, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 875732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704673, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 838718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679792, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101007438, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 792373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 771234, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101034427, + "title": "Shortening the path to Rare Disease diagnosis by using newborn genetic screening and digital technologies", + "topic": "IMI2-2020-23-05" +},{ + "projectID": 834788, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 715782, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679551, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 838540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660003, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639485, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 832844, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 751530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851360, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 695093, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 648925, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 750747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749226, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891572, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 669424, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 715466, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 865849, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 793818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835297, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 746908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841780, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 750114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638333, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 648617, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 837897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000236, + "title": "Genome and epigenome enabled breeding in terrestrial livestock", + "topic": "SFS-13-2020" +},{ + "projectID": 788016, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 850852, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 788093, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 819179, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 677448, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101031767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866328, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715638, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716132, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 857122, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 840519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637420, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660742, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 952346, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 882385, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 704426, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 949223, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 670582, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 638917, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 948771, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 851647, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 664561, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 804569, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 707135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706443, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 640384, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 714653, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 755027, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 949172, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 647320, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 802531, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 743074, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101018108, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640643, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 884331, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 747332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 759154, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 656357, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 800247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020558, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 657592, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 748354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 694658, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 798106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725422, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 885729, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 695288, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 844564, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 883605, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 714326, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 695744, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 724718, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 805268, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 789055, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101023351, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 681443, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 753766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101002629, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101033398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 757648, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 694212, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 810645, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 638897, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 838666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 951385, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 844014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803768, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 948135, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 794054, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647971, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 658195, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 949618, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 884952, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 885998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658900, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 893122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695225, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 750624, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724803, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 788380, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 747424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742067, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 851511, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 948688, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 836207, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788937, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 742133, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 852798, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 715257, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 646663, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 679754, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 947317, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101030803, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 727761, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101027645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949873, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 844308, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637904, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 877363, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 715260, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705771, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 755758, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 647557, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 841172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101019630, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 818416, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 643439, + "title": "Mobilisation and mutual learning action plan", + "topic": "HCO-15-2014" +},{ + "projectID": 865797, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 804098, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 648143, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 657076, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 841482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 683257, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 893225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018688, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 853442, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 757451, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 648141, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 658714, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 945026, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101023312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 648861, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 835733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706365, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101001521, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 716035, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 694289, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 841092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 672570, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 825836, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 750259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 787270, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 706429, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802008, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 658795, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681396, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 795018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772874, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101028747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 695192, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 633436, + "title": "Breakthrough innovation for European Aviation", + "topic": "MG-1.5-2014" +},{ + "projectID": 748604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 763911, + "title": "New knowledge and technologies", + "topic": "LCE-06-2017" +},{ + "projectID": 767234, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 699202, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 690623, + "title": "International cooperation in aeronautics with China", + "topic": "MG-1.10-2015" +},{ + "projectID": 757910, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 686340, + "title": "Advanced predictive models development and simulation capabilities for Engine design space exploration and performance optimization", + "topic": "JTI-CS2-2014-CFP01-AIR-01-02" +},{ + "projectID": 650702, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 794823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 774718, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 884831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767644, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 738110, + "title": "Flexible Test Rig of Aircraft Control Surfaces powered by EMAs", + "topic": "JTI-CS2-2016-CFP03-AIR-02-17" +},{ + "projectID": 790057, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 785531, + "title": "Innovative Low Power De-Icing System", + "topic": "JTI-CS2-2017-CFP06-REG-01-09" +},{ + "projectID": 706553, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 877211, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785414, + "title": "VHBR Engine – Journal Bearing Technology", + "topic": "JTI-CS2-2017-CFP06-ENG-03-17" +},{ + "projectID": 738042, + "title": "Development of electromechanical actuators and electronic control units for flight control systems", + "topic": "JTI-CS2-2016-CFP03-SYS-02-14" +},{ + "projectID": 867002, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 756435, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 687412, + "title": "Bringing EO applications to the market", + "topic": "EO-1-2015" +},{ + "projectID": 884916, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 886840, + "title": "UHBR Engine Studies for Aircraft Operations and Economics", + "topic": "JTI-CS2-2019-CfP10-LPA-01-74" +},{ + "projectID": 796712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 735305, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 680954, + "title": "Support to future CROR and UHBR propulsion system maturation", + "topic": "JTI-CS2-2014-CFP01-LPA-01-02" +},{ + "projectID": 768129, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 885695, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 673834, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 834653, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 859232, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657233, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 690808, + "title": "International cooperation in aeronautics with Japan", + "topic": "MG-1.8-2015" +},{ + "projectID": 893240, + "title": "Upgrading smartness of existing buildings through innovations for legacy equipment", + "topic": "LC-SC3-EE-4-2019-2020" +},{ + "projectID": 797857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 762253, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 757700, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 867690, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866402, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 673712, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 733460, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 781656, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 720878, + "title": "Pilot lines for manufacturing of materials with customized thermal/electrical conductivity properties", + "topic": "PILOTS-01-2016" +},{ + "projectID": 697929, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 843958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 648179, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 728726, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 803082, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 650878, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 854331, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684780, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 746345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886986, + "title": "Advanced Pitch Control Mechanism TRL4 Demonstration", + "topic": "JTI-CS2-2019-CfP10-LPA-01-77" +},{ + "projectID": 845362, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 717069, + "title": "Design, development, testing and qualification of a high-reliability integrated fuel gauging and distribution system providing active CG management in a civil tiltrotor", + "topic": "JTI-CS2-2015-CFP02-FRC-01-06" +},{ + "projectID": 636218, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 699307, + "title": "Trajectory Based Operations (TBO)", + "topic": "Sesar-09-2015" +},{ + "projectID": 861584, + "title": "InCo Flagship on Integrated multimodal, low-emission freight transport systems and logistics", + "topic": "MG-2-9-2019" +},{ + "projectID": 865974, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 737721, + "title": "Eco Design: High efficient non-structural landing gear parts based on advanced carbon fiber material systems and highly automated production technologies for helicopter and aircrafts.", + "topic": "JTI-CS2-2016-CFP03-SYS-03-05" +},{ + "projectID": 785315, + "title": "Affordable Electro-Optical Sensor Cluster/Assembly Unit(LRU) for Vision & Awareness enabling Enhanced Vision, Sense & Avoid, and Obstacle Detection Systems for Aeroplane and Helicopter All-weather Operations and enhanced safety", + "topic": "JTI-CS2-2017-CFP06-SYS-01-06" +},{ + "projectID": 634534, + "title": "Independent access to space", + "topic": "COMPET-02-2014" +},{ + "projectID": 864769, + "title": "Anticontamination Coatings and Cleaning Solutions for Laminar Wings", + "topic": "JTI-CS2-2018-CFP09-AIR-01-40" +},{ + "projectID": 739305, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 686165, + "title": "Integration of novel nano materials into existing production lines", + "topic": "NMP-02-2015" +},{ + "projectID": 101033683, + "title": "Upgrading smartness of existing buildings through innovations for legacy equipment", + "topic": "LC-SC3-B4E-3-2020" +},{ + "projectID": 747007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831794, + "title": "Virtual-Hybrid-Real On Ground demonstration for HVDC & EMA Integration", + "topic": "JTI-CS2-2018-CfP08-AIR-02-62" +},{ + "projectID": 737802, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 738036, + "title": "Aerodynamic Isolated and Installed Methods for UHBR Adaptable Area Nozzles", + "topic": "JTI-CS2-2016-CFP03-LPA-01-16" +},{ + "projectID": 806470, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 888115, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779802, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 737757, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101000987, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 652862, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 950854, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101010042, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 857484, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 885052, + "title": "Rear fuselage and empennage shape optimization including anti-icing technologies", + "topic": "JTI-CS2-2019-CfP10-LPA-01-80" +},{ + "projectID": 844288, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 731864, + "title": "Enhanced Arrivals and Departures", + "topic": "SESAR.IR-VLD.Wave1-12-2015" +},{ + "projectID": 674406, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 714479, + "title": "Laminar Horizontal Tail Plane full scale ground demonstrator", + "topic": "JTI-CS2-2015-CFP02-LPA-01-06" +},{ + "projectID": 866991, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861079, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 676982, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 788465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 717183, + "title": "Test aircraft preparation and qualification for Scaled Flight Testing (PREP)", + "topic": "JTI-CS2-2015-CFP02-LPA-01-09" +},{ + "projectID": 886828, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 826182, + "title": "Improvement of innovative compression concepts for large scale transport applications", + "topic": "FCH-01-7-2018" +},{ + "projectID": 699299, + "title": "Data Science in ATM", + "topic": "Sesar-02-2015" +},{ + "projectID": 844733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 699326, + "title": "Economics and Legal Change in ATM", + "topic": "Sesar-05-2015" +},{ + "projectID": 875887, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 686366, + "title": "VHBR Engine - Advanced bearing technology", + "topic": "JTI-CS2-2014-CFP01-ENG-03-03" +},{ + "projectID": 790458, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 738078, + "title": "Next Generation Fuel Storage System", + "topic": "JTI-CS2-2016-CFP03-FRC-01-10" +},{ + "projectID": 650651, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 664892, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 831893, + "title": "Prediction of High Frequency Vibrations in Aircraft Engines", + "topic": "JTI-CS2-2018-CfP08-ENG-01-33" +},{ + "projectID": 945009, + "title": "Optimised fuels for production of medical radioisotopes", + "topic": "NFRP-2019-2020-15" +},{ + "projectID": 101022202, + "title": "International Cooperation with USA and/or China on alternative renewable fuels from sunlight for energy, transport and chemical storage", + "topic": "LC-SC3-RES-3-2020" +},{ + "projectID": 804092, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 738176, + "title": "Orbiting Journal Bearing Rig", + "topic": "JTI-CS2-2016-CFP03-ENG-03-09" +},{ + "projectID": 672457, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101033706, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 768945, + "title": "Innovations for energy efficiency and emission control in waterborne transport", + "topic": "MG-2.1-2017" +},{ + "projectID": 636565, + "title": "Cooperative ITS for safe, congestion-free and sustainable mobility", + "topic": "MG-3.5a-2014" +},{ + "projectID": 651786, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 790450, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 654091, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 736261, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101006794, + "title": "Overcoming technical and administrative barriers to deployment of multi-fuel hydrogen refuelling stations (HRS)", + "topic": "FCH-04-1-2020" +},{ + "projectID": 806303, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 681856, + "title": "Aerodynamic and acoustic capabilities developments for close coupling, high bypass ratio turbofan Aircraft integration", + "topic": "JTI-CS2-2014-CFP01-AIR-01-01" +},{ + "projectID": 785493, + "title": "Bearing chamber in hot environment", + "topic": "JTI-CS2-2017-CFP06-ENG-01-15" +},{ + "projectID": 715796, + "title": "Design, test and manufacturing of robust fluidic actuators", + "topic": "JTI-CS2-2015-CFP02-LPA-01-07" +},{ + "projectID": 884170, + "title": "Low carbon industrial production using CCUS", + "topic": "LC-SC3-NZE-5-2019-2020" +},{ + "projectID": 714030, + "title": "Powerplant Shaft Dynamic and associated damping system", + "topic": "JTI-CS2-2015-CFP02-ENG-04-05" +},{ + "projectID": 732358, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 785794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774187, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 831976, + "title": "Bio contamination survey", + "topic": "JTI-CS2-2018-CfP08-AIR-03-01" +},{ + "projectID": 808191, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 747334, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 720712, + "title": "Practices increasing effectiveness of forest management", + "topic": "BBI.VC2.R5-2015" +},{ + "projectID": 762535, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 887197, + "title": "Low-profile/drag electronically steerable antennas for In-Flight Connectivity", + "topic": "JTI-CS2-2019-CfP10-SYS-01-18" +},{ + "projectID": 783178, + "title": "Initial Trajectory Information sharing", + "topic": "SESAR-VLD1-04-2016" +},{ + "projectID": 826954, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744716, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 785513, + "title": "Assessment of Partial Discharge and breakdown behaviour of electric insulation materials for very high voltage gradients", + "topic": "JTI-CS2-2017-CFP06-SYS-03-12" +},{ + "projectID": 837378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 875006, + "title": "Future propulsion and integration: towards a hybrid/electric aircraft (InCo flagship)", + "topic": "LC-MG-1-7-2019" +},{ + "projectID": 762088, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 636834, + "title": "Integrated Process Control", + "topic": "SPIRE-01-2014" +},{ + "projectID": 828234, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007686, + "title": "Development of a multi-position valve with associated actuator for cargo fire protection", + "topic": "JTI-CS2-2020-CfP11-SYS-01-23" +},{ + "projectID": 783959, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 651009, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 786487, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 711347, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 810809, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 772395, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 672617, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 889546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 733979, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 872001, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 945541, + "title": "Engine ITD GAM 2020", + "topic": "CS2-GAM-2020-ENG" +},{ + "projectID": 775049, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 652782, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 769241, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 734145, + "title": "Arrival Management extended to en-route Airspace", + "topic": "SESAR.IR-VLD.Wave1-25-2015" +},{ + "projectID": 785407, + "title": "Emergency Exits and Cabin Footstep for the Fast Rotorcraft", + "topic": "JTI-CS2-2017-CFP06-FRC-02-21" +},{ + "projectID": 101022868, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 819543, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 820516, + "title": "Innovative validation methods and tools for FMS", + "topic": "JTI-CS2-2017-CfP07-LPA-03-14" +},{ + "projectID": 737992, + "title": "Tests for leakage identification on Aircraft fluid mechanical installations", + "topic": "JTI-CS2-2016-CFP03-AIR-02-24" +},{ + "projectID": 661935, + "title": "High density uranium fuel and targets for the production of medical radioisotopes", + "topic": "NFRP-08-2015" +},{ + "projectID": 729096, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 785313, + "title": "Advanced turbine system performance improvement through dual-spool rig tests", + "topic": "JTI-CS2-2017-CFP06-ENG-01-17" +},{ + "projectID": 650908, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 831960, + "title": "In-Seat Ventilation & Supply for Personalized Comfort Control on Board an Aircraft", + "topic": "JTI-CS2-2018-CfP08-AIR-01-39" +},{ + "projectID": 826044, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 683695, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 800036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 723167, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 717484, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 686600, + "title": "Characterisation of Thermo-mechanical Fatigue Behaviour", + "topic": "JTI-CS2-2014-CFP01-ENG-03-01" +},{ + "projectID": 867829, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719098, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 757130, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 845549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 783552, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 714249, + "title": "Fuel bladder tanks for a fast compound rotorcraft", + "topic": "JTI-CS2-2015-CFP02-FRC-02-12" +},{ + "projectID": 863258, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 706346, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 826193, + "title": "PNR for safety of hydrogen driven vehicles and transport through tunnels and similar confined spaces", + "topic": "FCH-04-1-2018" +},{ + "projectID": 101038066, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 101017626, + "title": "Downlinking Flight Trajectory to improve ATM performance", + "topic": "SESAR-WAVE3-07-2020" +},{ + "projectID": 723706, + "title": "Industrial furnace design addressing energy efficiency in new and existing furnaces", + "topic": "SPIRE-04-2016" +},{ + "projectID": 658570, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 737814, + "title": "Advanced mechatronics devices for electrical management system of Turboprop", + "topic": "JTI-CS2-2016-CFP03-ENG-01-07" +},{ + "projectID": 101011162, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 737645, + "title": "Secured and performant wireless connection based on light (LiFi) for EFB, headset and other pilot connected devices", + "topic": "JTI-CS2-2016-CFP03-LPA-03-07" +},{ + "projectID": 101032191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723149, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 822123, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769246, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 854698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783116, + "title": "Arrival Management Extended to En-route airspace", + "topic": "SESAR-VLD1-01-2016" +},{ + "projectID": 663178, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 886019, + "title": "Experimental and numerical noise assessment of distributed propulsion configurations", + "topic": "JTI-CS2-2019-CFP10-THT-08" +},{ + "projectID": 662136, + "title": "Regional initiative aiming at nuclear research and training capacity building", + "topic": "NFRP-14-2014" +},{ + "projectID": 717089, + "title": "Active technologies for acoustic and vibration comfort", + "topic": "JTI-CS2-2015-CFP02-LPA-01-04" +},{ + "projectID": 673465, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 970564, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807085, + "title": "Engines", + "topic": "CS2-GAM-2018-ENG" +},{ + "projectID": 894456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699340, + "title": "ATM Performance", + "topic": "Sesar-11-2015" +},{ + "projectID": 738196, + "title": "Windtunnel test for flow control at the engine/pylon with a representative aircraft configuration under fully realistic flow conditions", + "topic": "JTI-CS2-2016-CFP03-LPA-01-17" +},{ + "projectID": 845231, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 724748, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 718624, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 754307, + "title": "Design, Build and Test Innovative Actuation Concepts for Separation Flow Control", + "topic": "JTI-CS2-2016-CFP04-LPA-01-26" +},{ + "projectID": 718822, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 815058, + "title": "Multidisciplinary and collaborative aircraft design tools and processes", + "topic": "MG-3-1-2018" +},{ + "projectID": 638719, + "title": "Independent access to space", + "topic": "COMPET-02-2014" +},{ + "projectID": 754869, + "title": "Engine Control System", + "topic": "JTI-CS2-2016-CFP04-ENG-04-06" +},{ + "projectID": 806821, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 738172, + "title": "High Fidelity time-accurate CFD Simulations", + "topic": "JTI-CS2-2016-CFP03-LPA-01-15" +},{ + "projectID": 867161, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 820665, + "title": "Efficient recycling processes for plastic containing materials (IA)", + "topic": "CE-SPIRE-10-2018" +},{ + "projectID": 778030, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 823124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688082, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 101033869, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 648375, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 807102, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 785436, + "title": "Prediction of aerodynamic loads at high Reynolds Number", + "topic": "JTI-CS2-2017-CFP06-AIR-01-25" +},{ + "projectID": 735711, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 717199, + "title": "Multipurpose test rig for transmission gear boxes", + "topic": "JTI-CS2-2015-CFP02-FRC-02-10" +},{ + "projectID": 748784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 717112, + "title": "Electromechanical actuator for primary moveable surfaces of small aircraft with health monitoring", + "topic": "JTI-CS2-2015-CFP02-SYS-03-01" +},{ + "projectID": 687160, + "title": "Flightworthy Flush & Lightweight doors for unpressurized Fast Rotorcraft", + "topic": "JTI-CS2-2014-CFP01-AIR-02-01" +},{ + "projectID": 678763, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 717278, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 739775, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 686454, + "title": "Evaluate mechanical and fatigue capabilities for diode die in harsh environment", + "topic": "JTI-CS2-2014-CFP01-SYS-02-06" +},{ + "projectID": 786630, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 752149, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 717156, + "title": "Ice protection system based on two-phase heat transport technologies integrated in representative engine intake structure", + "topic": "JTI-CS2-2015-CFP02-AIR-02-08" +},{ + "projectID": 731787, + "title": "Integrated Airport Operations (incl. TBS)", + "topic": "SESAR.IR-VLD.Wave1-22-2015" +},{ + "projectID": 687351, + "title": "Technology developments for competitive imaging from space", + "topic": "EO-3-2015" +},{ + "projectID": 755602, + "title": "High load gear and bearings materials", + "topic": "JTI-CS2-2016-CFP04-ENG-01-13" +},{ + "projectID": 802835, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 715873, + "title": "CROR Engine debris Middle level Impact and mechanical test", + "topic": "JTI-CS2-2015-CFP02-AIR-01-08" +},{ + "projectID": 826051, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 738180, + "title": "Aileron Actuation Subsystem using EMAs", + "topic": "JTI-CS2-2016-CFP03-REG-01-03" +},{ + "projectID": 731268, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 889754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 850624, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 742222, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 878343, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699370, + "title": "High Performing Airport Operations", + "topic": "Sesar-06-2015" +},{ + "projectID": 876687, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781154, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 776816, + "title": "Water in the context of the circular economy", + "topic": "CIRC-02-2016-2017" +},{ + "projectID": 877766, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694272, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 670298, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 725555, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 742068, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 758529, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 654469, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 755654, + "title": "An innovative Electrical Power Distribution System (EPDS) for Small Aircraft", + "topic": "JTI-CS2-2016-CFP04-SYS-03-07" +},{ + "projectID": 796378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 888562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 949029, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 706219, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 803092, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 751794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024210, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 639739, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 850930, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 643990, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 895426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834256, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660940, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742104, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 681260, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 948819, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 815869, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 655222, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 949083, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 678702, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 884928, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 714955, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 804219, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 824140, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 854446, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865151, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 688712, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 702281, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 826238, + "title": "Innovative/breakthrough mobility concepts (with rail as backbone)", + "topic": "S2R-OC-IPX-03-2018" +},{ + "projectID": 797281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 716980, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 783458, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 661035, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101033300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792059, + "title": "Reducing the cost of PV electricity", + "topic": "LCE-10-2017" +},{ + "projectID": 798631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677120, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101030083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 850956, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 793026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 888676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755485, + "title": "Advanced Energy Storage and Regeneration System for Enhanced Electrical Energy Management", + "topic": "JTI-CS2-2016-CFP04-REG-01-08" +},{ + "projectID": 837724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 785585, + "title": "High density energy storage module for an electric taxi", + "topic": "JTI-CS2-2017-CFP06-SYS-02-29" +},{ + "projectID": 700745, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679127, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 723106, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 704837, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 647353, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 786851, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 823748, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 751150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101001331, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 704589, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 834290, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 706538, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819698, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 772960, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 678624, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 716196, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 788212, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 716429, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 864483, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 662400, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 949730, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 653846, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 874481, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 648783, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 715747, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 708201, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 851280, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 647158, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 759082, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 667156, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 728509, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 963550, + "title": "Hybridisation of battery systems for stationary energy storage", + "topic": "LC-BAT-9-2020" +},{ + "projectID": 659291, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 728632, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 748950, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 705410, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 725731, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 686509, + "title": "Modular, scalable, multi-function, high power density power controller for electric taxi", + "topic": "JTI-CS2-2014-CFP01-SYS-02-02" +},{ + "projectID": 964931, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 707758, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 898663, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657004, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101027220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 654490, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656940, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 692981, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 740651, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101008067, + "title": "Advanced High Power Electrical Systems for High Altitude Operation", + "topic": "JTI-CS2-2020-CFP11-THT-12" +},{ + "projectID": 654933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 730028, + "title": "SRC - In-Space electrical propulsion and station keeping - Disruptive Technologies", + "topic": "COMPET-3-2016-b" +},{ + "projectID": 796969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 957769, + "title": "DC – AC/DC hybrid grid for a modular, resilient and high RES share grid development", + "topic": "LC-SC3-ES-10-2020" +},{ + "projectID": 682922, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 701885, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 703662, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657439, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 758170, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 668998, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 895955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701807, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 883810, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 669771, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 659526, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 892728, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 853409, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 758700, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 811017, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 761989, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 853116, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 637912, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 713780, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 896370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 641985, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 652837, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 800488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 769119, + "title": "Potential of the Physical Internet", + "topic": "MG-5-4-2017" +},{ + "projectID": 757553, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 864066, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 708216, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101033347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820079, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 645047, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 758077, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 682629, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 687515, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 794950, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 792993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704830, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 898759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 810573, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 840745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 755839, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 853282, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 833802, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 888798, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 669014, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 796940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952439, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 805162, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 758792, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 707837, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 851555, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 945806, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 804752, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 706390, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 786780, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101002352, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 852977, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 656139, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714063, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 682903, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 800060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 683029, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101003096, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 658912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 884715, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 897714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677912, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714196, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 847675, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 886298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 951815, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 101020459, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 713171, + "title": "FET Exchange Coordination and Support Activities 2015", + "topic": "FETOPEN-CSA-FETEXCHANGE-2015" +},{ + "projectID": 637686, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 852016, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 682841, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 695099, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 866070, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 753276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 819189, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 786430, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 664931, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 818665, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 863464, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 890472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 678634, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 947660, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 818899, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 743159, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 676134, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 695088, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 796923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669991, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 725161, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101032223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948132, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 840446, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 679646, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 801945, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 810346, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 767195, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 706754, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 857263, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 648763, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 947630, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 842786, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677706, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 797246, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 670519, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101001638, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 757931, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 772225, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 714245, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 821858, + "title": "SRC – Space robotics technologies", + "topic": "SPACE-12-TEC-2018" +},{ + "projectID": 678194, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 949555, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 818772, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 717001, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 864361, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 748544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 788113, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101038062, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 860744, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 639248, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 715947, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 792848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101022760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 815673, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 757561, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 659985, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101020057, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 803862, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 776403, + "title": "Scientific data exploitation", + "topic": "COMPET-4-2017" +},{ + "projectID": 714626, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 676036, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 659383, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682393, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 646955, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 659744, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648505, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 700907, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 639459, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 660432, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655534, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101020583, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 865637, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 749073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724427, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 740120, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 855130, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 101026328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 883867, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 757802, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 637386, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 746119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750920, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 845165, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 843008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705332, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 948373, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 695621, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101026214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694520, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 722750, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 894321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 813644, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 702622, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 690618, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 866908, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750929, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101034634, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 866727, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881495, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 708227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 802460, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 820501, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 666473, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 867709, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790310, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 643358, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101000383, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 816950, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 782564, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 762106, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 710473, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 782091, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 877797, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717957, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 866950, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785091, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 954566, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 772252, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 680565, + "title": "Solids handling for intensified process technology", + "topic": "SPIRE-08-2015" +},{ + "projectID": 728580, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 873965, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957185, + "title": "Next Generation Media", + "topic": "ICT-44-2020" +},{ + "projectID": 817096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713539, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 759540, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 729968, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 763604, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 700829, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 762467, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 767799, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 853899, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 674872, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 807823, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 827658, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 764066, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 868144, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663913, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 101028018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 790820, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 687809, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 673388, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 731873, + "title": "Big data PPP: privacy-preserving big data technologies", + "topic": "ICT-18-2016" +},{ + "projectID": 651669, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 774656, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 696592, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 853530, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 856266, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674832, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 655416, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 866618, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954905, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854113, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854791, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703682, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 719945, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 768936, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 700626, + "title": "Border crossing points topic 1: Novel mobility concepts for land border security", + "topic": "BES-05-2015" +},{ + "projectID": 894404, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 868522, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868560, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957007, + "title": "Renewable and energy efficient solutions for heating and/or cooling, and domestic hot water production in multi-apartment residential buildings", + "topic": "LC-SC3-B4E-8-2020" +},{ + "projectID": 717803, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 723336, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 835456, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807109, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 674161, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 651537, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 876518, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652511, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 662498, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 673605, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 687110, + "title": "FET Take-Up Coordination and Support Activities 2015", + "topic": "FETOPEN-CSA-FETTAKEUP-2015" +},{ + "projectID": 845652, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 652491, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 683066, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 824424, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 824197, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 835624, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646374, + "title": "Presidency events", + "topic": "NMP-38-2014" +},{ + "projectID": 763807, + "title": "Drone information management", + "topic": "RPAS-02" +},{ + "projectID": 736154, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 894511, + "title": "Decarbonisation of the EU building stock: innovative approaches and affordable solutions changing the market for buildings renovation", + "topic": "LC-SC3-EE-1-2018-2019-2020" +},{ + "projectID": 868755, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673403, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 784498, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 650759, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 872857, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 790634, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 736521, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 729741, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 650796, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 718838, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 674214, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 664114, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 101010321, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 791411, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 777026, + "title": "ATS Level business jet 2035 forecast", + "topic": "JTI-CS2-2016-CFP05-TE2-01-03" +},{ + "projectID": 739580, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 806108, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 789863, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 827441, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868392, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723974, + "title": "Roadmap, new business models, awareness raising, support and incentives for the roll-out of ITS", + "topic": "MG-6.3-2016" +},{ + "projectID": 673556, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 777024, + "title": "ATS Level Rotorcraft 2035 forecast", + "topic": "JTI-CS2-2016-CFP05-TE2-01-04" +},{ + "projectID": 827378, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 689181, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 684644, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 817240, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 696448, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 674852, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 735279, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 744712, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 734160, + "title": "Common Services", + "topic": "SESAR.IR-VLD.Wave1-18-2015" +},{ + "projectID": 699009, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 778089, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 892037, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 809204, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 878391, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768766, + "title": "Integration of energy harvesting at building and district level", + "topic": "EEB-07-2017" +},{ + "projectID": 713239, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 743453, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 876376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736017, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 735781, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 793449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 854728, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762584, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 782517, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 664331, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 762708, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 809263, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 899896, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 849047, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 777443, + "title": "Innovating SMEs - segmentation along lifecycle and sectors (analytical research activity)", + "topic": "INNOSUP-07-2017" +},{ + "projectID": 672698, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 791877, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 831319, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 774088, + "title": "Support to the development and implementation of FOOD 2030 - a European research and innovation policy framework for food and nutrition security", + "topic": "SFS-18-2017" +},{ + "projectID": 869034, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781067, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 709444, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 870792, + "title": "Digitisation, Digital Single Market and European culture: new challenges for creativity, intellectual property rights and copyright", + "topic": "DT-GOVERNANCE-13-2019" +},{ + "projectID": 728311, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101033722, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 879433, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 101017331, + "title": "AI for the smart hospital of the future", + "topic": "DT-ICT-12-2020" +},{ + "projectID": 650697, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 672261, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 774623, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 663118, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 894478, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 673137, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 700985, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 736007, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 663463, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 672657, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 732098, + "title": "Boost synergies between artists, creative people and technologists", + "topic": "ICT-36-2016" +},{ + "projectID": 673800, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 710478, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 824950, + "title": "STARTS – The Arts stimulating innovation", + "topic": "ICT-32-2018" +},{ + "projectID": 824228, + "title": "Harnessing and understanding the impacts of changes in urban mobility on policy making by city-led innovation for sustainable urban mobility", + "topic": "LC-MG-1-3-2018" +},{ + "projectID": 723829, + "title": "Supporting accelerated and cost-effective deep renovation of buildings through Public Private Partnership (EeB PPP)", + "topic": "EE-10-2016" +},{ + "projectID": 873593, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 674828, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 688975, + "title": "Deep mining on continent and/or in sea-bed", + "topic": "SC5-11c-2015" +},{ + "projectID": 952226, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 832412, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827826, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877425, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781861, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 662690, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 826614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776643, + "title": "Water in the context of the circular economy", + "topic": "CIRC-02-2016-2017" +},{ + "projectID": 854782, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 738282, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 832552, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 712119, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015-1" +},{ + "projectID": 101026202, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 738028, + "title": "Advanced Bearings for Turboprop engine", + "topic": "JTI-CS2-2016-CFP03-ENG-01-08" +},{ + "projectID": 101004234, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 957527, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 691497, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 761589, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101009619, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 867907, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655177, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 750511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026229, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 673822, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 101010214, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 879434, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 736795, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 861211, + "title": "Innovative applications of drones for ensuring safety in transport", + "topic": "MG-2-8-2019" +},{ + "projectID": 889783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763054, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 841850, + "title": "Decarbonisation of the EU building stock: innovative approaches and affordable solutions changing the market for buildings renovation", + "topic": "LC-SC3-EE-1-2018-2019-2020" +},{ + "projectID": 868008, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814999, + "title": "Driver behaviour and acceptance of connected, cooperative and automated transport", + "topic": "MG-3-3-2018" +},{ + "projectID": 800995, + "title": "Support for the organisation of the Transport Research Arena 2020 Conference", + "topic": "MG-8-8-2017" +},{ + "projectID": 683422, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 867834, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807817, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 831226, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 779852, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 717108, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 759220, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 876666, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816149, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683960, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 767429, + "title": "Waste heat recovery from urban facilities and re-use to increase energy efficiency of district or individual heating and cooling systems", + "topic": "EE-01-2017" +},{ + "projectID": 879570, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 827565, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817109, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781271, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 792276, + "title": "Near-to-market solutions for the use of solar heat in industrial processes", + "topic": "LCE-12-2017" +},{ + "projectID": 689341, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 744791, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 760789, + "title": "Advanced materials and innovative design for improved functionality and aesthetics in high added value consumer goods", + "topic": "NMBP-05-2017" +},{ + "projectID": 827338, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717513, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 877967, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867189, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644771, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 643555, + "title": "Advancing active and healthy ageing with ICT: ICT solutions for independent living with cognitive impairment", + "topic": "PHC-20-2014" +},{ + "projectID": 734473, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 650027, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 786119, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 717419, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 754549, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 697908, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 729294, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 879557, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 882463, + "title": "European Open Innovation network in advanced technologies", + "topic": "INNOSUP-07-2019" +},{ + "projectID": 101010566, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 735620, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 683677, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 727482, + "title": "Crop diversification systems for the delivery of food, feed, industrial products and ecosystems services - from farm benefits to value-chain organisation", + "topic": "RUR-06-2016" +},{ + "projectID": 868441, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743809, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 776665, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 649639, + "title": "Development and market roll-out of innovative energy services and financial schemes for sustainable energy", + "topic": "EE-21-2014" +},{ + "projectID": 825974, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 824206, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 689925, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 809260, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 817331, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831067, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 889300, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697256, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 730411, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 776099, + "title": "EGNSS professional applications", + "topic": "GALILEO-3-2017" +},{ + "projectID": 680738, + "title": "New technologies for utilization of heat recovery in large industrial systems, considering the whole energy cycle from heat production to transformation, delivery and end use", + "topic": "EE-18-2015" +},{ + "projectID": 688382, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 868489, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644683, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 867502, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816746, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662639, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 732258, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 718491, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 698521, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 867618, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664165, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 808030, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 673380, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 101034493, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 868808, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674431, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 752126, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 827965, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729085, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 836906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025164, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 696084, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2015" +},{ + "projectID": 790574, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 774407, + "title": "Demonstration of system integration with smart transmission grid and storage technologies with increasing share of renewables", + "topic": "LCE-04-2017" +},{ + "projectID": 791751, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 877456, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 791365, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 728320, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 817375, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 734713, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 684749, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 783308, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 831312, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 828500, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671584, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 674505, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 868285, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643736, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 858373, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963576, + "title": "Next-generation batteries for stationary energy storage", + "topic": "LC-BAT-8-2020" +},{ + "projectID": 718003, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 957779, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 640217, + "title": "In-Orbit demonstration/Validation (IOD/IOV)", + "topic": "COMPET-05-2014" +},{ + "projectID": 954040, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806940, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 868376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 965525, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 728567, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 684849, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 673128, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 101033686, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side", + "topic": "LC-SC3-B4E-14-2020" +},{ + "projectID": 745079, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 858342, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651263, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 815769, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781835, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 864283, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 761874, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 644871, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 678426, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 673280, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 651086, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 771066, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 879956, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 812730, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 646531, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 824392, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 951992, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 828076, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831235, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 828121, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699249, + "title": "Economics and Legal Change in ATM", + "topic": "Sesar-05-2015" +},{ + "projectID": 775577, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 698297, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 678407, + "title": "Buildings design for new highly energy performing buildings", + "topic": "EE-02-2015" +},{ + "projectID": 650677, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 734950, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 700326, + "title": "Forensics topic 4: Internet Forensics to combat organized crime", + "topic": "FCT-04-2015" +},{ + "projectID": 770686, + "title": "EEN H2020 SGA2 2D BATCH", + "topic": "H2020-EEN-SGA2-2017-1" +},{ + "projectID": 876798, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878069, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868842, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887507, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957338, + "title": "Blockchain for the Next Generation Internet", + "topic": "ICT-54-2020" +},{ + "projectID": 101003765, + "title": "Strengthening international collaboration: enhanced natural treatment solutions for water security and ecological quality in cities", + "topic": "SC5-27-2020" +},{ + "projectID": 871345, + "title": "Photonics Manufacturing Pilot Lines for Photonic Components and Devices", + "topic": "ICT-03-2018-2019" +},{ + "projectID": 879838, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 877307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763554, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 957561, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 699640, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 717540, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 857159, + "title": "Smart and healthy living at home", + "topic": "DT-TDS-01-2019" +},{ + "projectID": 696023, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2015" +},{ + "projectID": 817064, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691777, + "title": "Transmission grid and wholesale market", + "topic": "LCE-06-2015" +},{ + "projectID": 876505, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873155, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 739797, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 890345, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 761863, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 662189, + "title": "ECSEL Key Applications and Essential Technologies (RIA)", + "topic": "ECSEL-01-2014" +},{ + "projectID": 957047, + "title": "Big data for buildings", + "topic": "LC-SC3-B4E-6-2020" +},{ + "projectID": 644617, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 808636, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 826252, + "title": "Supporting the implementation of the IP4 multi-modal transport ecosystem", + "topic": "S2R-OC-IP4-02-2018" +},{ + "projectID": 863225, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674155, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 835569, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885492, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729937, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 745148, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 643847, + "title": "eHealth interoperability", + "topic": "PHC-34-2014" +},{ + "projectID": 808585, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 785134, + "title": "Energy efficiency of industrial parks through energy cooperation and mutualised energy services", + "topic": "EE-18-2017" +},{ + "projectID": 766521, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 878129, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894617, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side as energy resource", + "topic": "LC-SC3-EE-13-2018-2019-2020" +},{ + "projectID": 823176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004709, + "title": "Centres/Networks of European research and innovation", + "topic": "GOVERNANCE-20-2020" +},{ + "projectID": 856264, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954796, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778143, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 817053, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698508, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 736302, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 837539, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684156, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 831228, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 735386, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 827710, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697581, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 745263, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 740898, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 674834, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 718669, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 876086, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732310, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 731664, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 835870, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745228, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 641517, + "title": "Releasing the potential of EGNSS applications through international cooperation", + "topic": "GALILEO-3-2014" +},{ + "projectID": 835668, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743486, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 101022987, + "title": "Turn lignin into materials and chemicals for high-end applications", + "topic": "BBI-2020-SO1-F2" +},{ + "projectID": 830976, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 832468, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728834, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 673757, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 710374, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 729070, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 870017, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 869879, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 744457, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 673107, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 743967, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 689731, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 651643, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 101006700, + "title": "Advanced research methods and tools in support of transport/mobility researchers, planners and policy makers", + "topic": "MG-4-8-2020" +},{ + "projectID": 851615, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 673373, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 790155, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 890537, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 827096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685022, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101034874, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 870356, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 717623, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 782619, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 650793, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 761625, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 855222, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727694, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 645220, + "title": "FIRE+ (Future Internet Research & Experimentation)", + "topic": "ICT-11-2014" +},{ + "projectID": 836015, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761779, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 863831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815582, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 809272, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101025788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957682, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 876428, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664168, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 855668, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736384, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 867873, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728993, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 761999, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 769016, + "title": "Supporting 'smart electric mobility' in cities", + "topic": "MG-4.2-2017" +},{ + "projectID": 699390, + "title": "Economics and Legal Change in ATM", + "topic": "Sesar-05-2015" +},{ + "projectID": 815653, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697557, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 663509, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 775428, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 868418, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816851, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683510, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 827249, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783861, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 684406, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 855892, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683965, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 101009493, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 672484, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 953157, + "title": "Open Innovation Test Beds for materials for building envelopes (IA)", + "topic": "DT-NMBP-05-2020" +},{ + "projectID": 690797, + "title": "Common communication and navigation platforms for pan-European logistics applications", + "topic": "MG-6.3-2015" +},{ + "projectID": 661864, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 672592, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 790729, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 816385, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876924, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814739, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790469, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 643738, + "title": "Bridging the divide in European health research and innovation", + "topic": "HCO-14-2014" +},{ + "projectID": 782888, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 825640, + "title": "Coordination and Support Activities for Digital Innovation Hub network", + "topic": "DT-ICT-06-2018" +},{ + "projectID": 684726, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 825012, + "title": "5G for cooperative, connected and automated mobility (CCAM)", + "topic": "ICT-18-2018" +},{ + "projectID": 888980, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761498, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 636078, + "title": "Smart Rail Services", + "topic": "MG-2.2-2014" +},{ + "projectID": 700138, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 820525, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 781623, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 808051, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 873387, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651487, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 808658, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 663792, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 655262, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824260, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 899596, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 846707, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 762511, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 736632, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 735833, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 712610, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 887396, + "title": "Multi-stakeholder dialogue platform to promote nature-based solutions to societal challenges: follow-up project", + "topic": "SC5-23-2019" +},{ + "projectID": 723661, + "title": "Plant-wide monitoring and control of data-intensive processes", + "topic": "SPIRE-02-2016" +},{ + "projectID": 789952, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 871614, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 713810, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 728408, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 872440, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740322, + "title": "Economics of Cybersecurity", + "topic": "DS-04-2016" +},{ + "projectID": 101024306, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704501, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 864288, + "title": "Ground vortex characterization method applicable for engine testing", + "topic": "JTI-CS2-2018-CfP09-ENG-01-41" +},{ + "projectID": 101023319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 692331, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 809085, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 710622, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 727211, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 858845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 815491, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672465, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 658884, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 840264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 875948, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643712, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 832329, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744184, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 817622, + "title": "Making European beekeeping healthy and sustainable", + "topic": "SFS-07-2018" +},{ + "projectID": 640353, + "title": "Support to European Aviation Research and Innovation Policy", + "topic": "MG-1.7-2014" +},{ + "projectID": 101033805, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 825879, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 774426, + "title": "Multi-use of the oceans marine space, offshore and near-shore: Enabling technologies", + "topic": "BG-04-2017" +},{ + "projectID": 754112, + "title": "Development and roll-out of innovative energy efficiency services", + "topic": "EE-25-2016" +},{ + "projectID": 963540, + "title": "Next generation and realisation of battery packs for BEV and PHEV", + "topic": "LC-BAT-10-2020" +},{ + "projectID": 696888, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 717517, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 663507, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 683390, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 816756, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855241, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685215, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 754436, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 710477, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 732184, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 763568, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 672732, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 744846, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 736749, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 773785, + "title": "Innovative agri-food chains: unlocking the potential for competitiveness and sustainability", + "topic": "SFS-34-2017" +},{ + "projectID": 690088, + "title": "New metallurgical systems", + "topic": "SC5-11e-2015" +},{ + "projectID": 790882, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 743796, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 827964, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727297, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 854946, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779579, + "title": "Demonstration of large electrolysers for bulk renewable hydrogen production", + "topic": "FCH-02-5-2017" +},{ + "projectID": 868691, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859474, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827538, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827613, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807942, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 751848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 816172, + "title": "Improving animal welfare", + "topic": "SFS-08-2018-2019" +},{ + "projectID": 672792, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 673746, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 867190, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946050, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 768614, + "title": "Integration of Demand Response in Energy Management Systems while ensuring interoperability through Public Private Partnership (EeB PPP)", + "topic": "EE-12-2017" +},{ + "projectID": 723810, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 847066, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side as energy resource", + "topic": "LC-SC3-EE-13-2018-2019-2020" +},{ + "projectID": 778615, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 697053, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 775145, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 783681, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 769900, + "title": "Multi-level modelling and testing of electric vehicles and their components", + "topic": "GV-07-2017" +},{ + "projectID": 870625, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 782009, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 662464, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 762800, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 662491, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 761413, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 671525, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 762381, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 730840, + "title": "Technical specifications for a new Adaptable Communication system for all Railways.", + "topic": "S2R-OC-IP2-03-2015" +},{ + "projectID": 870231, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 728895, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 816626, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662975, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 767513, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 739631, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 886209, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 759107, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 787300, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 805057, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 865094, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 757797, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 817708, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 687089, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 635872, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101030247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871908, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 865119, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 715289, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 768956, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 669182, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 840690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 725091, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 892965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 717832, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 743491, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 672591, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 815858, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672097, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 762961, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 660980, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 713601, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 682939, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 797995, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731297, + "title": "Smart Cities and Communities lighthouse projects", + "topic": "SCC-1-2016-2017" +},{ + "projectID": 101027548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660211, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794618, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 708832, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 866355, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 803825, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 682311, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 824395, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 101022101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 818625, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 651901, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 857223, + "title": "Smart and healthy living at home", + "topic": "DT-TDS-01-2019" +},{ + "projectID": 808126, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 807212, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 762428, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 738925, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 643357, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 951292, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 822247, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739807, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 832307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808764, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 697700, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 806595, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 854382, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762739, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 876143, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674502, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 684168, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 744676, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 894039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 670930, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 838472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 755284, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 864921, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 722606, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 639534, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 862539, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 895166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 866688, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718725, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 672664, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 787764, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 957073, + "title": "Blockchain for the Next Generation Internet", + "topic": "ICT-54-2020" +},{ + "projectID": 884176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761699, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 775495, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 876908, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683740, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 831224, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 698243, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 650690, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 855133, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681107, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 877268, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 857008, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 724112, + "title": "Research, technology development and market trends for the European transport manufacturing industries", + "topic": "MG-8.1-2016" +},{ + "projectID": 774802, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 888052, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867710, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876049, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867535, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652490, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 766936, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 790146, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 698686, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 890492, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 814917, + "title": "Advanced technologies (Security/Cloud/IoT/BigData) for a hyper-connected society in the context of Smart City", + "topic": "EUJ-01-2018" +},{ + "projectID": 735853, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 645206, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 724356, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 740754, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 820937, + "title": "Demonstrating systemic urban development for circular and regenerative cities", + "topic": "CE-SC5-03-2018" +},{ + "projectID": 673578, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 957755, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 822314, + "title": "Inclusive and sustainable growth through cultural and creative industries and the arts", + "topic": "TRANSFORMATIONS-06-2018" +},{ + "projectID": 674864, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 726368, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 698589, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101002158, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 703523, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 759099, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 647670, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 795064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 787702, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 804884, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 705321, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884830, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101027467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019963, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 896644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714102, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 805222, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 801655, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 703896, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796450, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 744293, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 947709, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 839151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 642901, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 653963, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678734, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 898128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 836212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677748, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714175, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 852742, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 811034, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 894656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772577, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 864400, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 839398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 663654, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 763023, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 872525, + "title": "Big data solutions for energy", + "topic": "DT-ICT-11-2019" +},{ + "projectID": 729066, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 820074, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101002044, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 808421, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 767325, + "title": "Cross-cutting KETs for diagnostics at the point-of-care", + "topic": "NMBP-13-2017" +},{ + "projectID": 101033432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737071, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 742039, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 683136, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 759206, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759427, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101003111, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 896153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 868326, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636804, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 731946, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2016" +},{ + "projectID": 711032, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 790208, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 643282, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 836202, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101022265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659776, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 777372, + "title": "Unlocking the Solute Carrier Gene-Family for Effective New Therapies (Unlock SLCs)", + "topic": "IMI2-2016-10-06" +},{ + "projectID": 891670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 743887, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 846796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 726130, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 668997, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 724180, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 898260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691689, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2015" +},{ + "projectID": 841957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 878026, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780229, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 807821, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 674853, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 882689, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881092, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887858, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687607, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2015" +},{ + "projectID": 781685, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 729717, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 701197, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 732242, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2016" +},{ + "projectID": 733461, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 643566, + "title": "Advancing active and healthy ageing with ICT: ICT solutions for independent living with cognitive impairment", + "topic": "PHC-20-2014" +},{ + "projectID": 737848, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 855726, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740466, + "title": "Human Factor for the Prevention, Investigation, and Mitigation of criminal and terrorist acts", + "topic": "SEC-07-FCT-2016-2017" +},{ + "projectID": 651636, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 651485, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 781305, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 729876, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 711558, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 672228, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 101033700, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side", + "topic": "LC-SC3-B4E-14-2020" +},{ + "projectID": 664011, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 886542, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690367, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 816017, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645215, + "title": "Advanced digital gaming/gamification technologies", + "topic": "ICT-21-2014" +},{ + "projectID": 868361, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710405, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 724835, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 661484, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 670881, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 896846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 679140, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 874839, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 101028611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 636717, + "title": "Manufacturing of prefabricated modules for renovation of building", + "topic": "EE-01-2014" +},{ + "projectID": 948544, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 748139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683144, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 878178, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781928, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 762607, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 741366, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 890970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948636, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 838902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 846016, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638376, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 851054, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 802878, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 677427, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 679033, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 648039, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 845303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 850782, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101019289, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 812850, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 678071, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 893260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658838, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 772026, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 682810, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101007934, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 886322, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 670146, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 829965, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759248, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 659505, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 846571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759708, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101021246, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 815357, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 659171, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002599, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 726151, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 669207, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 948514, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 890362, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 871869, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-33-2019" +},{ + "projectID": 963603, + "title": "Reducing the cost of large batteries for waterborne transport", + "topic": "LC-BAT-11-2020" +},{ + "projectID": 867482, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 695965, + "title": "Demand response in blocks of buildings", + "topic": "EE-06-2015" +},{ + "projectID": 808192, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 674861, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 822620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726547, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 828200, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717736, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 718070, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 775441, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 854538, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899961, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 721890, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 827403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701730, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 676843, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 950757, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 822273, + "title": "Partnering for viability assessments of innovative solutions for markets outside Europe", + "topic": "GOVERNANCE-08-2018" +},{ + "projectID": 673607, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 958397, + "title": "Industrialisation of building envelope kits for the renovation market (IA)", + "topic": "LC-EEB-04-2020" +},{ + "projectID": 673735, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 774663, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 783988, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 817389, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 896042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 669898, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 819160, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 883855, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 815645, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 802000, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 682190, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 863809, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 851368, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 867437, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 704254, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 894917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 898228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777783, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 704206, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 670951, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 840290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705862, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705847, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 700124, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 768623, + "title": "Development of near zero energy building renovation", + "topic": "EEB-05-2017" +},{ + "projectID": 763805, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 672296, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 739690, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 719528, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 812170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735751, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 837498, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 961967, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957815, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 672614, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 683661, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 760801, + "title": "Innovative solutions for the conservation of 20th century cultural heritage", + "topic": "NMBP-35-2017" +},{ + "projectID": 672559, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 888653, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899590, + "title": "Support to the SciPost initiative", + "topic": "IBA-ERC-SCIPOST-2019" +},{ + "projectID": 815522, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868645, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853706, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891166, + "title": "ATM Role in Intermodal Transport", + "topic": "SESAR-ER4-10-2019" +},{ + "projectID": 723784, + "title": "Presidency events", + "topic": "NMBP-31-2016" +},{ + "projectID": 832574, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 641625, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 688717, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 728346, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 717578, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 650572, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 671864, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 740980, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 718938, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 673755, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 674786, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 827263, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728612, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 651630, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 685232, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 776381, + "title": "EGNSS mass market applications", + "topic": "GALILEO-2-2017" +},{ + "projectID": 835783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711332, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 812602, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861598, + "title": "Logistics solutions that deal with requirements of the 'on demand economy' and for shared-connected and low-emission logistics operations", + "topic": "LC-MG-1-10-2019" +},{ + "projectID": 842501, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 683962, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 876941, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761976, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 733164, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 698221, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015" +},{ + "projectID": 684795, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 685343, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 878276, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684100, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 684528, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 663530, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 778571, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 698662, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 744015, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 769765, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 687283, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 697335, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 871493, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 961930, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735732, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 651947, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 736495, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 712984, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 817191, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767180, + "title": "Integration of energy harvesting at building and district level", + "topic": "EEB-07-2017" +},{ + "projectID": 953020, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 696114, + "title": "Demand response in blocks of buildings", + "topic": "EE-06-2015" +},{ + "projectID": 674549, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 697447, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 717690, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 804412, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101022770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020521, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 851102, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 690866, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 861908, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 643636, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 846375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 744014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 948365, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101024529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 633303, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 730822, + "title": "Travel companion and tracking services", + "topic": "S2R-CFM-IP4-02-2015" +},{ + "projectID": 815899, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778764, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 729721, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 720657, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 764786, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 101023981, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649030, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 966855, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 641389, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101024862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 774477, + "title": "Smart Cities and Communities lighthouse projects", + "topic": "SCC-1-2016-2017" +},{ + "projectID": 966778, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 644988, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 836120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811640, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662967, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 673647, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 854605, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728455, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 691095, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101029432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 667951, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 751349, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 802778, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 963843, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 646511, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2014" +},{ + "projectID": 661051, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 861833, + "title": "Logistics solutions that deal with requirements of the 'on demand economy' and for shared-connected and low-emission logistics operations", + "topic": "LC-MG-1-10-2019" +},{ + "projectID": 633236, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 101015492, + "title": "Supporting the implementation of the IP4 multi-modal transport ecosystem (iTD4.7)", + "topic": "S2R-OC-IP4-01-2020" +},{ + "projectID": 854824, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743965, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 729589, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 815958, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687132, + "title": "Engine Installation Optimization", + "topic": "JTI-CS2-2014-CFP01-ENG-04-04" +},{ + "projectID": 663406, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 736726, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 722935, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 722273, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 696800, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015" +},{ + "projectID": 650194, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 828151, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697678, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 819717, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 885979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851173, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 693327, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 684915, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 650426, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 811624, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646125, + "title": "Local / small-scale storage", + "topic": "LCE-08-2014" +},{ + "projectID": 833513, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 692811, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 731232, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 777517, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 945698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 847054, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side as energy resource", + "topic": "LC-SC3-EE-13-2018-2019-2020" +},{ + "projectID": 754017, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 835858, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680474, + "title": "Innovative design tools for refurbishing of buildings at district level", + "topic": "EeB-05-2015" +},{ + "projectID": 739713, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 782118, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 726743, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 771349, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 661066, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 845692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637888, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 949021, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 702106, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705089, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101031780, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865323, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 753367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 695467, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 852012, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 787355, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101022398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 679242, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 658726, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653639, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 639060, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 657988, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 701238, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818879, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 699017, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 800267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 730843, + "title": "Threat detection and profile protection definition for cyber-security assessment", + "topic": "S2R-OC-IP2-01-2015" +},{ + "projectID": 684657, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 652373, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 768242, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 726539, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 644262, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 665672, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 735476, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 808038, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 744478, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 827490, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822559, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 658789, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 791147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 757573, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 801669, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101030945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 696671, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 877642, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826934, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867748, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691181, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 753274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 688467, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 888510, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683621, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 836177, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636427, + "title": "Connectivity and information sharing for intelligent mobility", + "topic": "MG-7.1-2014" +},{ + "projectID": 845570, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 815069, + "title": "Harnessing and understanding the impacts of changes in urban mobility on policy making by city-led innovation for sustainable urban mobility", + "topic": "LC-MG-1-3-2018" +},{ + "projectID": 719660, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 641544, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 749788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101029676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 679777, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 946693, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788970, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 792661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789341, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 729930, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 115848, + "title": "Rapid diagnostic tests", + "topic": "IMI2-2014-02-05" +},{ + "projectID": 742927, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101030734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842742, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 725085, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 661160, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 669628, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 957161, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 659592, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 682435, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 657501, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 876524, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006601, + "title": "Towards sustainable urban air mobility", + "topic": "MG-3-6-2020" +},{ + "projectID": 811799, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 633288, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 826831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 650292, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 739301, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 755757, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 633376, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 840944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 650475, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 775737, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 769072, + "title": "Increasing the take up and scale-up of innovative solutions to achieve sustainable mobility in urban areas", + "topic": "MG-4.1-2017" +},{ + "projectID": 883286, + "title": "Security for smart and safe cities, including for public spaces", + "topic": "SU-INFRA02-2019" +},{ + "projectID": 767807, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 956002, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 721875, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 708698, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 816635, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726607, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 653383, + "title": "Ethical/Societal Dimension topic 2: Better understanding the links between culture, risk perception and disaster management", + "topic": "DRS-21-2014" +},{ + "projectID": 769513, + "title": "Shifting paradigms: Exploring the dynamics of individual preferences, behaviours and lifestyles influencing travel and mobility choices", + "topic": "MG-8-5-2017" +},{ + "projectID": 703328, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 722952, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 804469, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101004275, + "title": "EGNSS applications fostering digitisation", + "topic": "DT-SPACE-EGNSS-2-2019-2020" +},{ + "projectID": 734602, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 867995, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816562, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763423, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 798514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692426, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101017808, + "title": "Environmental Intelligence", + "topic": "FETPROACT-EIC-08-2020" +},{ + "projectID": 770038, + "title": "Big data in Transport: Research opportunities, challenges and limitations", + "topic": "MG-8-2-2017" +},{ + "projectID": 697631, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 650507, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 764902, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 955273, + "title": "Network and traffic management for future mobility", + "topic": "MG-2-11-2020" +},{ + "projectID": 723384, + "title": "Innovative concepts, systems and services towards 'mobility as a service'", + "topic": "MG-6.1-2016" +},{ + "projectID": 633370, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 722981, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 763080, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101026536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 808253, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 832157, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728682, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101025452, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 807017, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 872743, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 101006632, + "title": "Underground storage of renewable hydrogen in depleted gas fields and other geological stores", + "topic": "FCH-02-5-2020" +},{ + "projectID": 101007342, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 794410, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949719, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 867470, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 787356, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 793381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862151, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 727264, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 640696, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 893435, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 743168, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 637614, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647455, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 655238, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 755211, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 704974, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 752999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 783654, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 650731, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 756288, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 637752, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 705846, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 698669, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 657527, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 729198, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 677776, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 743312, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 655341, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 715732, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705149, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655817, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678834, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 793186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 825710, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 715230, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 656918, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 746340, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 896149, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 753595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 865973, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 884449, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 747662, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 638573, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647344, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 658442, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002999, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101001634, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 648879, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 713608, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 664713, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 714617, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 841051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003777, + "title": "ERA-NET Cofund action on conservation and restoration of degraded ecosystems and their biodiversity, including a focus on aquatic systems", + "topic": "SC5-34-2020" +},{ + "projectID": 667255, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 678792, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101024424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 742390, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 633545, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 746382, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101000612, + "title": "Pilot action for the removal of marine plastics and litter", + "topic": "CE-FNR-09-2020" +},{ + "projectID": 771425, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 896143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 832511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655656, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 718097, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 759534, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 947907, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 681213, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 899429, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 663062, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 757956, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 757688, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 737561, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 684290, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015-1" +},{ + "projectID": 813124, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101029198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704603, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 714226, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 664470, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 804981, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 704039, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835883, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 824036, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 763158, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 641152, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 838555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 752846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027174, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721016, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 708041, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 874467, + "title": "Innovation Procurement: Next generation sequencing (NGS) for routine diagnosis", + "topic": "SC1-BHC-10-2019" +},{ + "projectID": 675014, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 899833, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 757411, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 789565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852223, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 885184, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 964712, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 706274, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835300, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 833365, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834259, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 707449, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770884, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 897821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647403, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 897629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 679146, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 812986, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 682394, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 645684, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 660449, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705289, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 899122, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 866166, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 700184, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 642934, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 841673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742288, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 897730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772437, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 660122, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 680242, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 864952, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 866051, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 797220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 653216, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896849, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659339, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 665751, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101000970, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 896897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817533, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 741781, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 727758, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 702824, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835161, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 851936, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 681178, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 642738, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 792367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 721058, + "title": "Nanoformulation of biologicals", + "topic": "NMBP-10-2016" +},{ + "projectID": 897137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002075, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 832409, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 682291, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 899928, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 741912, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 897666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101006134, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 837491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 680899, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 845680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758617, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 886045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708169, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101030961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 850638, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 795655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706828, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 695558, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 818846, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 724705, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 758397, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101003153, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 827226, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 744658, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 828779, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 704957, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 836243, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 852780, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 811532, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841108, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 832339, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684661, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 784167, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 827305, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036631, + "title": "Fostering regulatory science to address combined exposures to industrial chemicals and pharmaceuticals: from science to evidence-based policies", + "topic": "LC-GD-8-2-2020" +},{ + "projectID": 101026729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870257, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 807329, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101023635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 674527, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 683031, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 853489, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 728969, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 751615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 705010, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 728922, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 769033, + "title": "Full-scale demonstration of urban road transport automation", + "topic": "ART-07-2017" +},{ + "projectID": 880642, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875799, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783127, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 868586, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776436, + "title": "EGNSS mass market applications", + "topic": "GALILEO-2-2017" +},{ + "projectID": 869017, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003439, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 830019, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688099, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 101038097, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 690772, + "title": "Safe and connected automation in road transport", + "topic": "MG-3.6a-2015" +},{ + "projectID": 101029232, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 684477, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 730953, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 687458, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 807968, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 947154, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876967, + "title": "EDGE COMPUTING", + "topic": "ECSEL-RIA-2019-2-Special-Topic-2" +},{ + "projectID": 946897, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016807, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 787914, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 845948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825050, + "title": "5G for cooperative, connected and automated mobility (CCAM)", + "topic": "ICT-18-2018" +},{ + "projectID": 873550, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 707546, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 856138, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698282, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 876677, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708932, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 820633, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 779305, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 791714, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 864228, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 870258, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 745706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 956585, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 950180, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 730569, + "title": "Intelligent maintenance systems and strategies", + "topic": "S2R-CFM-IP3-02-2016" +},{ + "projectID": 709136, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 783270, + "title": "Enabling Aviation Infrastructure: CNS", + "topic": "SESAR-ER3-05-2016" +},{ + "projectID": 877077, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862308, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 826131, + "title": "H2020-ECSEL-2018-2-RIA", + "topic": "ECSEL-2018-2-RIA" +},{ + "projectID": 880753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870264, + "title": "Awareness Raising and capacity building", + "topic": "SPACE-EGNSS-4-2019" +},{ + "projectID": 850533, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 723390, + "title": "Road infrastructure to support the transition to automation and the coexistence of conventional and automated vehicles on the same network", + "topic": "ART-05-2016" +},{ + "projectID": 822641, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888465, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671566, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 641492, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 101025274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825651, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 744607, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 809185, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 717863, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015-1" +},{ + "projectID": 815012, + "title": "The Autonomous Ship", + "topic": "MG-3-2-2018" +},{ + "projectID": 731993, + "title": "Large Scale Pilots", + "topic": "IoT-01-2016" +},{ + "projectID": 641500, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 858428, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815098, + "title": "Driver behaviour and acceptance of connected, cooperative and automated transport", + "topic": "MG-3-3-2018" +},{ + "projectID": 781585, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 662899, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 706312, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 775998, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 827511, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862040, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 680904, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 780371, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 876126, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 808850, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 715097, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 887243, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728725, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 682587, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101018804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 635537, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 752671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 955944, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 795356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867737, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684803, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 718395, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 660391, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101017858, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 660306, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 763277, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 827339, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795625, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 877137, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775297, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 719717, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 648610, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 872607, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 899808, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 761846, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 817390, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 878134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 661122, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101009983, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 745058, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 661081, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101009793, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 837138, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878246, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006902, + "title": "Coordination and support for an integrated freight transport and logistics system", + "topic": "MG-2-13-2020" +},{ + "projectID": 768776, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 719462, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 101026629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 958491, + "title": "Preserving fresh water: recycling industrial waters industry", + "topic": "CE-SPIRE-07-2020" +},{ + "projectID": 692197, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 888744, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 763250, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 757004, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 736282, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 817346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649673, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2014" +},{ + "projectID": 101027796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825706, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 833031, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 866712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 665220, + "title": "Advanced 3D modelling for accessing and understanding European cultural assets", + "topic": "REFLECTIVE-7-2014" +},{ + "projectID": 822483, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 881323, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675676, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 656889, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 769896, + "title": "Reducing aviation noise", + "topic": "MG-1-2-2017" +},{ + "projectID": 813605, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 769830, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 890035, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687800, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 711226, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 892928, + "title": "U-space", + "topic": "SESAR-ER4-31-2019" +},{ + "projectID": 681858, + "title": "Airline Maintenance Operations implementation of an E2E Maintenance Service Architecture and its enablers", + "topic": "JTI-CS2-2014-CFP01-LPA-03-03" +},{ + "projectID": 711324, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 810686, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 678867, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 889719, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774231, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 644655, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 645267, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 702874, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 778161, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 833805, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 659398, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 855451, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854287, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101031111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645067, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 101036075, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 883302, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 727481, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 945983, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755490, + "title": "Hardware demonstrator development and deployment on Future Industrial Human Machine Interface (HMI) and Connected factory technologies", + "topic": "JTI-CS2-2016-CFP04-AIR-02-34" +},{ + "projectID": 868414, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751344, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825545, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 817142, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023950, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649323, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 638809, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 655852, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 675528, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101025294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723737, + "title": "Continuous adaptation of work environments with changing levels of automation in evolving production systems", + "topic": "FOF-04-2016" +},{ + "projectID": 735244, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 671660, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 815841, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790441, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 827176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 860124, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 880709, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101018390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786285, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 836141, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730827, + "title": "Energy usage, generation and saving approaches", + "topic": "S2R-OC-CCA-02-2015" +},{ + "projectID": 101023276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700200, + "title": "Develop technologies for achieving competitive solutions for APU transport applications based on existing technology", + "topic": "FCH-01.5-2015" +},{ + "projectID": 820783, + "title": "Processing of material feedstock using non-conventional energy sources (IA)", + "topic": "CE-SPIRE-02-2018" +},{ + "projectID": 644047, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 713783, + "title": "Powertrain control for heavy-duty vehicles with optimised emission", + "topic": "GV-6-2015" +},{ + "projectID": 728544, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 817330, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778498, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 644042, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 658863, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724846, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 661526, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 820954, + "title": "Digital solutions for water: linking the physical and digital world for water solutions", + "topic": "SC5-11-2018" +},{ + "projectID": 101025533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737439, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101010031, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 876648, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755154, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 664910, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 886409, + "title": "Development and simulation of a forming process for LE HLFC wing outer skins", + "topic": "JTI-CS2-2019-CfP10-LPA-01-83" +},{ + "projectID": 860763, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101030927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 684333, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 743419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659575, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 754316, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 653350, + "title": "Law enforcement capabilities topic 3: Pan European platform for serious gaming and training", + "topic": "FCT-07-2014" +},{ + "projectID": 731974, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 743761, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 945138, + "title": "Safety margins determination for design basis-exceeding external hazards", + "topic": "NFRP-2019-2020-03" +},{ + "projectID": 738228, + "title": "Adaptive multifunctional innovative Test Rigs for both structural test of multidimensional and multishape panels and structural tests on Tail unit", + "topic": "JTI-CS2-2016-CFP03-AIR-02-22" +},{ + "projectID": 705652, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 730936, + "title": "European Common Research and Innovation Agendas (ECRIAs) in support of the implementation of the SET Action Plan", + "topic": "LCE-33-2016" +},{ + "projectID": 101001847, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 860095, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 863146, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101031974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101019808, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 726765, + "title": "Virtual museums and social platform on European digital heritage, memory, identity and cultural interaction.", + "topic": "CULT-COOP-08-2016" +},{ + "projectID": 863322, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 967473, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793325, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 645705, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 858632, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697613, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 721615, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 880895, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 690140, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 703650, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747898, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 687399, + "title": "Releasing the potential of EGNSS applications through international cooperation", + "topic": "GALILEO-3-2015" +},{ + "projectID": 816426, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 641629, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 656349, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 872170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 754174, + "title": "Cost reduction of new Nearly Zero-Energy buildings", + "topic": "EE-13-2016" +},{ + "projectID": 955401, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 731533, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 675731, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 787674, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 757850, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 640594, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 727540, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 793114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 663564, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 662898, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 691371, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 642536, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 770784, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 950084, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 737494, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 101017743, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 727153, + "title": "Virtual museums and social platform on European digital heritage, memory, identity and cultural interaction.", + "topic": "CULT-COOP-08-2016" +},{ + "projectID": 867026, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738219, + "title": "Orbital Drilling of small (<10mm diameter) holes, standardly spaced with aluminium material in the stack", + "topic": "JTI-CS2-2016-CFP03-AIR-01-17" +},{ + "projectID": 721920, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 643095, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 730302, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 663503, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 817335, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769935, + "title": "Multi-level modelling and testing of electric vehicles and their components", + "topic": "GV-07-2017" +},{ + "projectID": 887010, + "title": "Increasing the efficiency of pulsed jet actuators for flow separation control", + "topic": "JTI-CS2-2019-CFP10-AIR-02-77" +},{ + "projectID": 661362, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 780075, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 710753, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 750835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 761586, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 862462, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 687669, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 711303, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 868292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672302, + "title": "ERC Support for novel ways to highlight the work funded by the ERC and reach out a wider public.", + "topic": "ERC-SUPPORT-2014" +},{ + "projectID": 743521, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 820615, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 728569, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 688417, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 717185, + "title": "Technology evaluation of immersive technologies for in-flight applications", + "topic": "JTI-CS2-2015-CFP02-AIR-01-14" +},{ + "projectID": 709122, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 692465, + "title": "Design Technology", + "topic": "ECSEL-07-2015" +},{ + "projectID": 884251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723201, + "title": "Road infrastructure to support the transition to automation and the coexistence of conventional and automated vehicles on the same network", + "topic": "ART-05-2016" +},{ + "projectID": 646191, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 101032903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645369, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 101031088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101000499, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 814143, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 754145, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 842536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 858051, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737424, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 867342, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886538, + "title": "Smart Active Inceptors System development for Tilt Rotor application", + "topic": "JTI-CS2-2019-CFP10-FRC-01-29" +},{ + "projectID": 664734, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 820099, + "title": "Numerical and experimental study of high speed radial flow compressors", + "topic": "JTI-CS2-2017-CfP07-ENG-01-30" +},{ + "projectID": 636895, + "title": "Development of new self-inspection techniques and quality check methodologies for efficient construction processes", + "topic": "EeB-03-2014" +},{ + "projectID": 835926, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833123, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 875193, + "title": "Li-ion Cell Materials & Transport Modelling", + "topic": "LC-BAT-6-2019" +},{ + "projectID": 651171, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 777159, + "title": "Personalised computer models and in-silico systems for well-being", + "topic": "SC1-PM-17-2017" +},{ + "projectID": 704201, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 675745, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 960828, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 724087, + "title": "System and cost optimised hybridisation of road vehicles", + "topic": "GV-03-2016" +},{ + "projectID": 858375, + "title": "Integrated water management in small agricultural catchments", + "topic": "SFS-23-2019" +},{ + "projectID": 723082, + "title": "Zero-defect strategies at system level for multi-stage manufacturing in production lines", + "topic": "FOF-03-2016" +},{ + "projectID": 742299, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101033462, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723711, + "title": "Continuous adaptation of work environments with changing levels of automation in evolving production systems", + "topic": "FOF-04-2016" +},{ + "projectID": 888596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101000407, + "title": "Emerging challenges for soil management", + "topic": "SFS-21-2020" +},{ + "projectID": 744140, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 642663, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 723016, + "title": "Road infrastructure to support the transition to automation and the coexistence of conventional and automated vehicles on the same network", + "topic": "ART-05-2016" +},{ + "projectID": 101032975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 687931, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 663862, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101032701, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723277, + "title": "Continuous adaptation of work environments with changing levels of automation in evolving production systems", + "topic": "FOF-04-2016" +},{ + "projectID": 638173, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 686493, + "title": "Simulation tool development for a composite manufacturing process default prediction integrated into a quality control system", + "topic": "JTI-CS2-2014-CFP01-AIR-02-06" +},{ + "projectID": 737881, + "title": "Assembly Planning and Simulation of an Aircraft Final Assembly Line (FAL)", + "topic": "JTI-CS2-2016-CFP03-LPA-02-14" +},{ + "projectID": 688101, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 680517, + "title": "New tools and methodologies to reduce the gap between predicted and actual energy performances at the level of buildings and blocks of buildings", + "topic": "EeB-07-2015" +},{ + "projectID": 878748, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 644331, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 827885, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643433, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 691232, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 782820, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 817794, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 828001, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862549, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 878239, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 787203, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 636966, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 955805, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 732130, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 825797, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 672265, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 688380, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 732559, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 686782, + "title": "Aircraft System Prognostic solutions integrated into an airline E2E maintenance operational context", + "topic": "JTI-CS2-2014-CFP01-LPA-03-02" +},{ + "projectID": 664926, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101026014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804549, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 695517, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 787960, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101024700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 812716, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 643134, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 767560, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 738956, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 840752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 772561, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101023357, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 849456, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672637, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 641486, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 877528, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956547, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101023603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 836896, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 964998, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 661641, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875981, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028278, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 769080, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 660590, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 843892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655699, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768258, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 768565, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 707816, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890728, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771121, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 703094, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 876000, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797350, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 751019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 717577, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 101024269, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023171, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031538, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 763217, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 825813, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 704786, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 890750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875344, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 810752, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 101029204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 867793, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 680241, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 740773, + "title": "Developing a comprehensive approach to violent radicalization in the EU from early understanding to improving protection", + "topic": "SEC-06-FCT-2016" +},{ + "projectID": 101018262, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 836571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825297, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 846179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 950359, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 659148, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101017201, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 753053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752165, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101024492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844851, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001133, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 796992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003385, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 705515, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 688768, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 703063, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 834986, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 796918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 670172, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 956919, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101025755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 865305, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 897761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658375, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657039, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 840633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702073, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 762384, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 750429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683300, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 781043, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 101029050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 964827, + "title": "Micro- and nano-plastics in our environment: Understanding exposures and impacts on human health", + "topic": "SC1-BHC-36-2020" +},{ + "projectID": 898843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704696, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896141, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707220, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 882628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 873403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 951832, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 865202, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101002248, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 880886, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732278, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 661068, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 853051, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 846843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 765224, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 724191, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 746390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645743, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 716837, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 792575, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703613, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 824986, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 695674, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 750935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701494, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101002251, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 794080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755504, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 797942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 883121, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101023584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 671980, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 838371, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952306, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 679479, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 749932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 788941, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 945501, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 734855, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 794825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 709386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 731285, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 639905, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647316, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 896053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817798, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 707042, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655545, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018105, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 846018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759736, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 841603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759885, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 656724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 813851, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 758151, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 771387, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 643399, + "title": "Advancing active and healthy ageing with ICT: ICT solutions for independent living with cognitive impairment", + "topic": "PHC-20-2014" +},{ + "projectID": 647466, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101030486, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864879, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 852662, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 842492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 814607, + "title": "Open Innovation Test Beds for Safety Testing of Medical Technologies for Health (IA)", + "topic": "DT-NMBP-02-2018" +},{ + "projectID": 704992, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 660259, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 668989, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 694968, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 659193, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 652542, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 787307, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 836027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 739092, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 825664, + "title": "ERA-NET to support the Joint Programming in Neurodegenerative Diseases strategic plan (JPND)", + "topic": "SC1-HCO-04-2018" +},{ + "projectID": 639846, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101025785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 679927, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 842405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003413, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 864353, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 899262, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 688303, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 755745, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 781569, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 854642, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658712, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 733901, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101034252, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 775155, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 701319, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804360, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 679417, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 657679, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707600, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 729506, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 863203, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 750395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 637798, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 695642, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 673306, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 843172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804468, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 830115, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657087, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658072, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724286, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 637675, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 673072, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 884029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 780907, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 798716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 638218, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 747082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 824711, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 659379, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 852005, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 750556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 731077, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 772695, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 677199, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 753641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 648608, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101038055, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 800194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101029138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 897796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724692, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 795441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 639379, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 716208, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 702880, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 648235, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 676804, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 746899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 735092, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 794391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660565, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 695596, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 653056, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101022731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864117, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 894969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003355, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 825469, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 101032010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661541, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895273, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731767, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 864648, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101004949, + "title": "Curation of digital assets and advanced digitisation", + "topic": "DT-TRANSFORMATIONS-12-2018-2020" +},{ + "projectID": 741454, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 822682, + "title": "Addressing populism and boosting civic and democratic engagement", + "topic": "GOVERNANCE-03-2018" +},{ + "projectID": 101026507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865956, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 715009, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714623, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715028, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 701635, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 660149, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 862030, + "title": "Photocatalytic synthesis (RIA)", + "topic": "CE-NMBP-25-2019" +},{ + "projectID": 101036970, + "title": "Develop and demonstrate a 100 MW electrolyser upscaling the link between renewables and commercial/industrial applications", + "topic": "LC-GD-2-2-2020" +},{ + "projectID": 956148, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 780730, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 659391, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656259, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 642904, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 699892, + "title": "Development of co-electrolysis using CO2 and water", + "topic": "FCH-02.3-2015" +},{ + "projectID": 827357, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101020492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 692131, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 707299, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 729519, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 708117, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101007201, + "title": "Decarbonising islands using renewable energies and hydrogen - H2 Islands", + "topic": "FCH-03-2-2020" +},{ + "projectID": 839542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749586, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101022498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899747, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 862192, + "title": "Photocatalytic synthesis (RIA)", + "topic": "CE-NMBP-25-2019" +},{ + "projectID": 101024374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 636752, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 704989, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 780964, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101023999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 854670, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674760, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 787128, + "title": "Integration of detection capabilities and data fusion with utility providers’ networks", + "topic": "SEC-10-FCT-2017" +},{ + "projectID": 750686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852239, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 897396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 662420, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 840724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 818450, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 768788, + "title": "New electrochemical solutions for industrial processing, which contribute to a reduction of carbon dioxide emissions", + "topic": "SPIRE-10-2017" +},{ + "projectID": 958418, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 772039, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 877091, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007175, + "title": "Diagnostics and Control of SOE", + "topic": "FCH-02-3-2020" +},{ + "projectID": 779985, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 861369, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 866600, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818862, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 790280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 817758, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 724695, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 820718, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 727420, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 651167, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 651788, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 101007173, + "title": "Scale-up and demonstration of innovative hydrogen compressor technology for full-scale hydrogen refuelling station", + "topic": "FCH-01-8-2020" +},{ + "projectID": 767798, + "title": "New electrochemical solutions for industrial processing, which contribute to a reduction of carbon dioxide emissions", + "topic": "SPIRE-10-2017" +},{ + "projectID": 101022222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 826638, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 786350, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864792, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 800364, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 642045, + "title": "Preparing and promoting innovation procurement for soil decontamination", + "topic": "SC5-08-2014" +},{ + "projectID": 820008, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 645551, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 966334, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 657755, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 756785, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 695599, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 791092, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 659325, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 817940, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 822464, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813209, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 774971, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 826350, + "title": "Demonstration of large-scale steam electrolyser system in industrial market", + "topic": "FCH-02-2-2018" +},{ + "projectID": 742145, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 948007, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 816268, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 950625, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101027316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 971138, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 745805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745246, + "title": "Valorisation of lignin and other side-streams to increase efficiency of biorefineries and increase sustainability of the whole value chain", + "topic": "BBI-2016-D03" +},{ + "projectID": 101006701, + "title": "Development of next generation renewable fuel technologies from CO2 and renewable energy (Power and Energy to Renewable Fuels)", + "topic": "LC-SC3-RES-26-2020" +},{ + "projectID": 894508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 683024, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 770887, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 765860, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 832480, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 641415, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 699794, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 823942, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 659378, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 899412, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 852115, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 838014, + "title": "Conversion of captured CO2", + "topic": "CE-SC3-NZE-2-2018" +},{ + "projectID": 708874, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 781253, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 890659, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707944, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 826527, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690724, + "title": "Enhancing resource efficiency of aviation", + "topic": "MG-1.2-2015" +},{ + "projectID": 842988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101007168, + "title": "Electrolyser module for offshore production of renewable hydrogen", + "topic": "FCH-02-6-2020" +},{ + "projectID": 875118, + "title": "New Anion Exchange Membrane Electrolysers", + "topic": "FCH-02-4-2019" +},{ + "projectID": 799281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 771793, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 660969, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 759696, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 746579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701493, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 873827, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701662, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 653784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824871, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022738, + "title": "International cooperation with Japan for Research and Innovation on advanced biofuels and alternative renewable fuels", + "topic": "LC-SC3-RES-25-2020" +},{ + "projectID": 951843, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 657473, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 675106, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 659033, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 710752, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 866021, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646603, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 680897, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 833710, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 834616, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 656011, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798570, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 639382, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 658677, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 743151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 819593, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 854501, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702001, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 737395, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2016" +},{ + "projectID": 675879, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 803565, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 897672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 815686, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101029190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 867452, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 865622, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 954332, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 680449, + "title": "Recovery technologies for metals and other minerals", + "topic": "SPIRE-07-2015" +},{ + "projectID": 646669, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 886291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657270, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 648381, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 793228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660452, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 767112, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 701783, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657042, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 859841, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 716648, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 688003, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 101007896, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 715807, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 893251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 778591, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 868812, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 716426, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 707864, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 666507, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 809069, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 840450, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 897496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 678875, + "title": "Integrated design and management of production machinery and processes", + "topic": "FoF-14-2015" +},{ + "projectID": 948525, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 848413, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007948, + "title": "Replacement of cobalt in Environmental Control System bleed valves", + "topic": "JTI-CS2-2020-CFP11-SYS-03-26" +},{ + "projectID": 645314, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 633098, + "title": "Acoustic and imaging technologies", + "topic": "BG-09-2014" +},{ + "projectID": 896148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 860807, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 701034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 950618, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 868231, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101017136, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 750669, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766610, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 664482, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 648166, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 835907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 821344, + "title": "Crowned spline surface treatment and modelling", + "topic": "JTI-CS2-2017-CfP07-ENG-01-24" +},{ + "projectID": 748071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 854176, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759644, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 798176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834410, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101023747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 790169, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 884900, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 751249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705955, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 754807, + "title": "Hybrid machining for high removal rates and surface integrity applicable for safety critical super alloy parts", + "topic": "JTI-CS2-2016-CFP04-LPA-01-20" +},{ + "projectID": 884963, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 844829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704218, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 964006, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 694683, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 697818, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 951224, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 705968, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 853014, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 703497, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 780598, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 758973, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 750353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 850463, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 778062, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 669531, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 723000, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 657188, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678567, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 719161, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 950707, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 656607, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101020100, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 687088, + "title": "Development of advanced laser-beam welding technology for the manufacturing of structures for titanium HLFC structures", + "topic": "JTI-CS2-2014-CFP01-LPA-01-03" +},{ + "projectID": 820404, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 731465, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 638546, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 688544, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 771410, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 678580, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 648978, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 664732, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 831690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949119, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 835465, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683341, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 800901, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 739697, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 853522, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 801352, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 744840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 826882, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813159, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 795107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655063, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002406, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 884104, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 647695, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 749709, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766695, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 835133, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 695724, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 852428, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 851201, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 820133, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 789868, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 756722, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 945915, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 846470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703230, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 745115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 692670, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 749565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 637662, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638221, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 817855, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 898288, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 949754, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 683214, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 677595, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 882967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702497, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 638115, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 870996, + "title": "Democratic crisis? Resolving socio-economic and political challenges to reinvigorate democracies", + "topic": "GOVERNANCE-17-2019" +},{ + "projectID": 772436, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 788304, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 865088, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 694318, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 758450, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 852439, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 647835, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101002985, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 817582, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 680486, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 677124, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 845643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703223, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785057, + "title": "Innovative financing schemes", + "topic": "EE-23-2017" +},{ + "projectID": 659369, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 833177, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 838418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787367, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101030949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 863486, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 648833, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 759537, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 949247, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101002115, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 883620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 638134, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 656195, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 851794, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 661433, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789948, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 822002, + "title": "Satellite communication technologies", + "topic": "SPACE-15-TEC-2018" +},{ + "projectID": 639119, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 825103, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 743949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690416, + "title": "New sustainable exploration technologies and geomodels", + "topic": "SC5-11d-2015" +},{ + "projectID": 748839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 667483, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 801250, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 779971, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 742422, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 688572, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 681654, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 948129, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 812763, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 825142, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 871312, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 101035022, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 873919, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 724103, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 737033, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 751492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101017114, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 753718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 725767, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 889512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 863307, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 690835, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 878436, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744817, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656908, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 785557, + "title": "Optimisation of Friction Stir Welding (FSW) and Laser Beam Welding (LBW) for assembly of structural aircraft parts", + "topic": "JTI-CS2-2017-CFP06-AIR-01-29" +},{ + "projectID": 789670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654496, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 821236, + "title": "Development of an eco-friendly selective stripping for exterior surfaces of airframe structures", + "topic": "JTI-CS2-2017-CfP07-AIR-01-35" +},{ + "projectID": 775591, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 701859, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 663090, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 800290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896409, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707658, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681885, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 835329, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 804626, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101016964, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 896957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 682978, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 896800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871529, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 751939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740355, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 735812, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 732411, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 793604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 115844, + "title": "Rapid diagnostic tests", + "topic": "IMI2-2014-02-05" +},{ + "projectID": 785355, + "title": "Compound Rotorcraft Assembly Tooling", + "topic": "JTI-CS2-2017-CFP06-FRC-02-26" +},{ + "projectID": 853564, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 648124, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 793936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 825567, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 646990, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 825503, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 695351, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 717922, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 712718, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 956494, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 748767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 743642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 667933, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 633155, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 894881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702350, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758224, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 843830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 834431, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 739714, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 862254, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 702565, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 693447, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 737038, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 814147, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 852394, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 694965, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 644192, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 637367, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 759483, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 966656, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 726420, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725151, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 718618, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 678004, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 780326, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 860808, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 837355, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819957, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 883272, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 688516, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 880906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780930, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 752285, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 836372, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101035027, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 696877, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 101034481, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101032333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723795, + "title": "Novel hybrid approaches for additive and subtractive manufacturing machines", + "topic": "FOF-01-2016" +},{ + "projectID": 771747, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 682782, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 792421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741276, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 663790, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 657261, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 640678, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 866001, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 730645, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101018482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 819871, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 785393, + "title": "Representative HLFC Leading Edge structure – Torsion and Bending Stiffness Test", + "topic": "JTI-CS2-2017-CFP06-LPA-01-31" +},{ + "projectID": 665635, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 945255, + "title": "Fostering innovation in decommissioning of nuclear facilities", + "topic": "NFRP-2019-2020-09" +},{ + "projectID": 838772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 789339, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 757386, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 656923, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739656, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 695677, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 831857, + "title": "Probabilistic simulation of defect probability in LWD – Wire fusion processes", + "topic": "JTI-CS2-2018-CfP08-ENG-03-23" +},{ + "projectID": 876984, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759744, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 713619, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 753749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 870421, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 697549, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 659233, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 964481, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 639859, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 856415, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 669466, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 785408, + "title": "3D printing and harsh environment testing of flow control actuators at aircraft scale", + "topic": "JTI-CS2-2017-CFP06-LPA-01-34" +},{ + "projectID": 703979, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 754916, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 786306, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 745776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659222, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 848668, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 764787, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101035029, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 951899, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 862474, + "title": "Materials, manufacturing processes and devices for organic and large area electronics (IA)", + "topic": "DT-NMBP-18-2019" +},{ + "projectID": 101016457, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 682383, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 655367, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 882708, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658258, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 800832, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 815974, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672213, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 753025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 839779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 953378, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643238, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 748519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661171, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 633818, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 898594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 662771, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 783598, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 842676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844541, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820314, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 887677, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677548, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 647771, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 641927, + "title": "Materials for electronic devices", + "topic": "SC5-12a-2014" +},{ + "projectID": 889525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 774760, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 702702, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 861152, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 789340, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 660598, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 836958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862442, + "title": "Real-time nano-characterisation technologies (RIA)", + "topic": "DT-NMBP-08-2019" +},{ + "projectID": 823720, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 862541, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 714118, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101003142, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 894679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 807088, + "title": "Small Air Transport Transverse Activity", + "topic": "CS2-GAM-2018-SAT" +},{ + "projectID": 730836, + "title": "Freight Automation on lines and in yards", + "topic": "S2R-OC-IP5-01-2015" +},{ + "projectID": 639109, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 899774, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 954932, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019234, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 706724, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 665412, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 657115, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 732513, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 846648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 852722, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 804769, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 641989, + "title": "Mining of small and complex deposits and alternative mining", + "topic": "SC5-11a-2014" +},{ + "projectID": 673416, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 827760, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778608, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 789992, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 714697, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 734075, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 964191, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 713762, + "title": "SPACE", + "topic": "SPACE" +},{ + "projectID": 654318, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703926, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 674319, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 846146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659012, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705874, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 800410, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 860579, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 816417, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816152, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021812, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 682512, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101003359, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 862811, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 812998, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 745598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 829208, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 956419, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 787539, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 660028, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 830296, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 682399, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 881158, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681917, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 831144, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101032761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 673905, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 663984, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 798292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 785539, + "title": "Development of non-intrusive engine emissions instrumentation capability", + "topic": "JTI-CS2-2017-CFP06-ENG-03-16" +},{ + "projectID": 690991, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 790786, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 655933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 829153, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 839004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705151, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 644348, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 755620, + "title": "High throughput micro drilling (HTMD) system", + "topic": "JTI-CS2-2016-CFP04-LPA-01-24" +},{ + "projectID": 687336, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 756043, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 862517, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 811234, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 835398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693243, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 894433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 760680, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 655179, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 803634, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 877430, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 958417, + "title": "Assembly of micro parts (RIA)", + "topic": "DT-FOF-07-2020" +},{ + "projectID": 727738, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 657544, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 778602, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 899912, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 838143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 636930, + "title": "Integrated Process Control", + "topic": "SPIRE-01-2014" +},{ + "projectID": 679408, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 676842, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 687880, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 691688, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 794885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 721766, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101028938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 650594, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 755641, + "title": "Novel manufacture of low weight skin without chemical milling", + "topic": "JTI-CS2-2016-CFP04-AIR-01-23" +},{ + "projectID": 680633, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FoF-09-2015" +},{ + "projectID": 635998, + "title": "Tackling urban road congestion", + "topic": "MG-5.3-2014" +},{ + "projectID": 723006, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 819161, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 954726, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 653260, + "title": "Crisis management topic 7: Crises and disaster resilience – operationalizing resilience concepts", + "topic": "DRS-07-2014" +},{ + "projectID": 852208, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101025581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865985, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 837804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002422, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 899773, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 683402, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 875090, + "title": "H2 Valley", + "topic": "FCH-03-1-2019" +},{ + "projectID": 101025516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 807685, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 675020, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 826089, + "title": "Demonstration of a large-scale (min. 20MW) electrolyser for converting renewable energy to hydrogen", + "topic": "FCH-02-1-2018" +},{ + "projectID": 101038048, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 745702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007194, + "title": "Highly efficient hydrogen production using solid oxide electrolysis integrated with renewable heat and power", + "topic": "FCH-02-2-2020" +},{ + "projectID": 727734, + "title": "International Cooperation with South Korea on new generation high-efficiency capture processes", + "topic": "LCE-24-2016" +},{ + "projectID": 101009244, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 826968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723678, + "title": "Potential use of carbon dioxide / carbon monoxide and non-conventional fossil natural resources in Europe as feedstock for the process industry", + "topic": "SPIRE-05-2016" +},{ + "projectID": 101036935, + "title": "Develop and demonstrate a 100 MW electrolyser upscaling the link between renewables and commercial/industrial applications", + "topic": "LC-GD-2-2-2020" +},{ + "projectID": 101037125, + "title": "Innovative land-based and offshore renewable energy technologies and their integration into the energy system", + "topic": "LC-GD-2-1-2020" +},{ + "projectID": 956151, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101024758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715354, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 641640, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 101031846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825117, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 727606, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101000828, + "title": "Defossilising agriculture – solutions and pathways for fossil-energy-free farming", + "topic": "LC-FNR-06-2020" +},{ + "projectID": 875088, + "title": "New Anion Exchange Membrane Electrolysers", + "topic": "FCH-02-4-2019" +},{ + "projectID": 101007216, + "title": "Development and validation of existing and novel recycling technologies for key FCH products", + "topic": "FCH-04-4-2020" +},{ + "projectID": 779730, + "title": "European Higher Training Network in Fuel Cells and Hydrogen", + "topic": "FCH-04-3-2017" +},{ + "projectID": 724084, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 779694, + "title": "Liquid organic hydrogen carrier", + "topic": "FCH-02-6-2017" +},{ + "projectID": 101019937, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 760944, + "title": "High-performance materials for optimizing carbon dioxide capture", + "topic": "NMBP-20-2017" +},{ + "projectID": 740689, + "title": "Integrated tools for response planning and scenario building", + "topic": "SEC-01-DRS-2016" +},{ + "projectID": 787100, + "title": "Human Factor for the Prevention, Investigation, and Mitigation of criminal and terrorist acts", + "topic": "SEC-07-FCT-2016-2017" +},{ + "projectID": 653004, + "title": "Ethical/Societal Dimension Topic 1: Factors affecting (in-) security", + "topic": "FCT-13-2014" +},{ + "projectID": 740575, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 963648, + "title": "Pre-Commercial Procurement for a 100% Renewable Energy Supply", + "topic": "LC-SC3-RES-10-2020" +},{ + "projectID": 649397, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2014" +},{ + "projectID": 647586, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101018520, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 702009, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794771, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 792270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 714027, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 702217, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101032066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029953, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677511, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 656647, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 841247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 657615, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656655, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001937, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101028714, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661799, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771592, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 657766, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 881224, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736045, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 798953, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707013, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 818086, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 876546, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950822, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 746169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 737419, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 722497, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 842043, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 802544, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 746189, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703526, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701324, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 656385, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884235, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 706040, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 761388, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 700788, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844064, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 686271, + "title": "Biomaterials for treatment and prevention of Alzheimer's disease", + "topic": "NMP-12-2015" +},{ + "projectID": 798640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741791, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 750700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 836384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018608, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 752992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 780383, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 882387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885360, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 682237, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 836754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 700088, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 787552, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 677770, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 653284, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 969264, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799393, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 865615, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 897795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 867468, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 771534, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101020697, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 817842, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 888677, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659453, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833685, + "title": "Cybersecurity preparedness - cyber range, simulation and economics", + "topic": "SU-DS01-2018" +},{ + "projectID": 822732, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 800301, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101005144, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 763073, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 755234, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 834052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 752845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025649, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655398, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 817387, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766811, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 828412, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 708466, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 743118, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 660401, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 889836, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742555, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101020356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002643, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 796089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867184, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 860277, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 699069, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 774582, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 705817, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706430, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819299, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 715772, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 681819, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 840195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692659, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 656853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 874050, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 739687, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 707999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655178, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 877011, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690898, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 775885, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 956481, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 892050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695716, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 963929, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101024150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835900, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729452, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 883055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739666, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 792813, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 762031, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 670932, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 648440, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 659510, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 826725, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 746628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657768, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 745435, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 855994, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 816561, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658718, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 719262, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 716311, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 652965, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 777657, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 748032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896775, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788587, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 834164, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 721062, + "title": "Pilot Line Manufacturing of Nanostructured Antimicrobial Surfaces using Advanced Nanosurface Functionalization Technologies", + "topic": "PILOTS-02-2016" +},{ + "projectID": 835509, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833598, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 895136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758003, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101003373, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 669598, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 720480, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 834534, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101038072, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 655043, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 666698, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 812915, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 724630, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 789385, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852600, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 716515, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 772178, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 693683, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 752896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825569, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 774716, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 768584, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 820523, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 746270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 955626, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 752399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 866348, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 811322, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 827942, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003229, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 803375, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 896201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705808, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 707457, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 647004, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 817139, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 693755, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 801389, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 956401, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 722840, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 681544, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 695070, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 785562, + "title": "Part specific process optimization in SLM", + "topic": "JTI-CS2-2017-CFP06-AIR-02-47" +},{ + "projectID": 870485, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 633776, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 772738, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 685952, + "title": "Additive manufacturing for tabletop nanofactories", + "topic": "NMP-07-2015" +},{ + "projectID": 763356, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 886491, + "title": "Development of Thermoplastic press forming Tool for Advanced Rear End Closing Frame Prototype and Tooling 4.0 for Assembly and transportation of the Advanced Rear End Prototype", + "topic": "JTI-CS2-2019-CfP10-LPA-01-82" +},{ + "projectID": 836131, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948336, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101024074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802873, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101026104, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 854697, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 760662, + "title": "Pilot Lines for 3D printed and/or injection moulded polymeric or ceramic microfluidic MEMS", + "topic": "PILOTS-04-2017" +},{ + "projectID": 827349, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 692097, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 780278, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 678144, + "title": "Manufacturing of custom made parts for personalised products", + "topic": "FoF-10-2015" +},{ + "projectID": 735636, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 886985, + "title": "Design and manufacturing of multi-functional Ice Protection System power feed/monitoring lines and Shielding/High-lift electrical actuation system for a HLFC Wing demonstrator", + "topic": "JTI-CS2-2019-CfP10-LPA-01-85" +},{ + "projectID": 837120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864819, + "title": "Design Against Distortion: Part distortion prediction, design for minimized distortion, additive manufactured polymer aerospace parts", + "topic": "JTI-CS2-2018-CFP09-AIR-02-75" +},{ + "projectID": 755301, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 835545, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808405, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 793861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 958472, + "title": "Assembly of micro parts (RIA)", + "topic": "DT-FOF-07-2020" +},{ + "projectID": 101015423, + "title": "Support to Development of next generation of Traction systems (TD1.1)", + "topic": "S2R-OC-IP1-01-2020" +},{ + "projectID": 651604, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 755610, + "title": "Innovative alloy development for structural part fabrication with Additive Manufacturing Technology", + "topic": "JTI-CS2-2016-CFP04-REG-01-07" +},{ + "projectID": 680898, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 805411, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 796292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 833092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 737889, + "title": "Prototype Tooling for Sub-Assembly, Final Assembly and Transport of the Morphing Winglet and Multifunctional Outer Flaps of the next generation optimized wing box.", + "topic": "JTI-CS2-2016-CFP03-AIR-02-19" +},{ + "projectID": 854596, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636881, + "title": "Manufacturing processes for complex structures and geometries with efficient use of material", + "topic": "FoF-02-2014" +},{ + "projectID": 798014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 685937, + "title": "Additive manufacturing for tabletop nanofactories", + "topic": "NMP-07-2015" +},{ + "projectID": 706996, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 737845, + "title": "Low cost Fused Filament Fabrication of high performance thermoplastics for structural applications", + "topic": "JTI-CS2-2016-CFP03-AIR-02-20" +},{ + "projectID": 862617, + "title": "Advanced materials for additive manufacturing (IA)", + "topic": "DT-NMBP-19-2019" +},{ + "projectID": 831872, + "title": "Optimized UHPE flow path cooling design and testing using advanced manufacturing techniques", + "topic": "JTI-CS2-2018-CfP08-ENG-01-32" +},{ + "projectID": 744481, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 868218, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950785, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 861895, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 777896, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 821903, + "title": "SRC – Space robotics technologies", + "topic": "SPACE-12-TEC-2018" +},{ + "projectID": 748649, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 757993, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 881062, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 633192, + "title": "Manufacturing processes for complex structures and geometries with efficient use of material", + "topic": "FoF-02-2014" +},{ + "projectID": 842599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820776, + "title": "Pilot lines for metal Additive Manufacturing (IA 50%)", + "topic": "DT-FOF-04-2018" +},{ + "projectID": 865206, + "title": "Additive Manufacturing Magnetic Motor", + "topic": "JTI-CS2-2018-CfP09-SYS-02-56" +},{ + "projectID": 831880, + "title": "Compact Matrix Air Oil Heat Exchanger", + "topic": "JTI-CS2-2018-CfP08-LPA-01-53" +},{ + "projectID": 877469, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690608, + "title": "International cooperation in aeronautics with Canada", + "topic": "MG-1.9-2015" +},{ + "projectID": 790823, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 678860, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FoF-09-2015" +},{ + "projectID": 861890, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 760927, + "title": "Pilot Lines for 3D printed and/or injection moulded polymeric or ceramic microfluidic MEMS", + "topic": "PILOTS-04-2017" +},{ + "projectID": 864482, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 820701, + "title": "Skills needed for new Manufacturing jobs (CSA)", + "topic": "DT-FOF-01-2018" +},{ + "projectID": 637943, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101032131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833487, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746250, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669768, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 788753, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101028362, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677575, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101030735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694946, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 808534, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 742685, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 764979, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101027737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 765341, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 686808, + "title": "Design Against Distortion: Part distortion prediction, design for minimized distortion, metallic aerospace parts", + "topic": "JTI-CS2-2014-CFP01-AIR-02-07" +},{ + "projectID": 821233, + "title": "Technological readiness at the operational level for additive manufacturing in primary structure and large size components", + "topic": "JTI-CS2-2017-CfP07-REG-02-04" +},{ + "projectID": 880174, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865217, + "title": "Development of System pipework and Tooling for Sub-Assembly, Final-Assembly of the HLFC-wing Prototype", + "topic": "JTI-CS2-2018-CfP09-LPA-01-65" +},{ + "projectID": 645749, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 963898, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 868243, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952463, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 849119, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 856998, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 798820, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032133, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737453, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 948238, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 894457, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 899953, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 637624, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 750985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 723879, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 814588, + "title": "Smart plastic materials with intrinsic recycling properties by design (RIA)", + "topic": "CE-NMBP-26-2018" +},{ + "projectID": 827447, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723699, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 717921, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 886696, + "title": "New Efficient production methods for 94 GHz (W-band) waveguide antennas", + "topic": "JTI-CS2-2019-CfP10-SYS-01-17" +},{ + "projectID": 645588, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 734455, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 869986, + "title": "Pilot lines for modular factories (IA 50%)", + "topic": "DT-FOF-08-2019" +},{ + "projectID": 805900, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 666610, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 865378, + "title": "Turbulence modeling of heat exchangers and roughness impact", + "topic": "JTI-CS2-2018-CfP09-ENG-01-40" +},{ + "projectID": 964955, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 960140, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867311, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862017, + "title": "Advanced materials for additive manufacturing (IA)", + "topic": "DT-NMBP-19-2019" +},{ + "projectID": 734342, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 714429, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 684856, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 869124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812944, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 953134, + "title": "Biological scaffolds for tissue regeneration and repair (RIA)", + "topic": "NMBP-21-2020" +},{ + "projectID": 101009685, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 690725, + "title": "International cooperation in aeronautics with China", + "topic": "MG-1.10-2015" +},{ + "projectID": 819069, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 765636, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 853806, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101034425, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 823941, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 818607, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 857061, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101007901, + "title": "Additive Manufacturing demonstration on test article for a trailing edge application with a sliding pad concept", + "topic": "JTI-CS2-2020-CFP11-AIR-01-47" +},{ + "projectID": 864253, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 721383, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 852065, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 841937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779909, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 773248, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 861138, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 839150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 760519, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101023128, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 646167, + "title": "Business models with new supply chains for sustainable customer-driven small series production", + "topic": "NMP-35-2014" +},{ + "projectID": 811800, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723391, + "title": "Supporting accelerated and cost-effective deep renovation of buildings through Public Private Partnership (EeB PPP)", + "topic": "EE-10-2016" +},{ + "projectID": 821371, + "title": "Development of innovative aluminium filler wire based manufacturing of aeronautic components and structures", + "topic": "JTI-CS2-2017-CfP07-AIR-01-34" +},{ + "projectID": 858886, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 787510, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 836895, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101007830, + "title": "Evaluation of NDT Techniques for Assessment of Critical Process and Manufacturing Related Flaws and Defects for a Ti-alloy", + "topic": "JTI-CS2-2020-CFP11-AIR-01-46" +},{ + "projectID": 717190, + "title": "Integrated main landing gear bay", + "topic": "JTI-CS2-2015-CFP02-LPA-02-09" +},{ + "projectID": 886229, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963890, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 763721, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 821274, + "title": "Next Generation Low Pressure Turbine airfoils by ALM", + "topic": "JTI-CS2-2017-CfP07-LPA-01-37" +},{ + "projectID": 729290, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101016262, + "title": "Repurposing of manufacturing for vital medical supplies and equipment.", + "topic": "SC1-PHE-CORONAVIRUS-2020-2A" +},{ + "projectID": 853625, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 863212, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 777714, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 951998, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 686202, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 717194, + "title": "Development and validation of an optimised gearbox housing structural design and manufacturing process, based on additive layer manufacturing concept leading to a flight cleared demonstrator.", + "topic": "JTI-CS2-2015-CFP02-FRC-01-03" +},{ + "projectID": 785520, + "title": "Innovative compact heat exchangers modelisation & characterisation", + "topic": "JTI-CS2-2017-CFP06-LPA-01-35" +},{ + "projectID": 686894, + "title": "Curved stiffened panels in thermoplastics by preindustrial ISC process", + "topic": "JTI-CS2-2014-CFP01-AIR-02-03" +},{ + "projectID": 714246, + "title": "Integration of Laser Beam Melting Simulation in the tool landscape for process preparation of Additive Manufacturing (AM) for Aero Engine applications", + "topic": "JTI-CS2-2015-CFP02-ENG-02-02" +},{ + "projectID": 723826, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 664508, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 872914, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101018634, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101028155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 768775, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FOF-12-2017" +},{ + "projectID": 730075, + "title": "SRC - In-Space electrical propulsion and station keeping - Disruptive Technologies", + "topic": "COMPET-3-2016-b" +},{ + "projectID": 867472, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 703746, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 831989, + "title": "Generic added structures on shells made from thermoplastic sheet material", + "topic": "JTI-CS2-2018-CfP08-LPA-02-24" +},{ + "projectID": 886112, + "title": "Innovative turbine cavity swirl control systems through Additive Manufacturing", + "topic": "JTI-CS2-2019-CfP10-LPA-01-78" +},{ + "projectID": 101024191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 946959, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 661621, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 824074, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 785217, + "title": "Advanced investigation of ultra compact RQL reverse flow combustor", + "topic": "JTI-CS2-2017-CFP06-ENG-04-07" +},{ + "projectID": 723600, + "title": "Novel hybrid approaches for additive and subtractive manufacturing machines", + "topic": "FOF-01-2016" +},{ + "projectID": 717170, + "title": "Design, development and flight qualification of a novel, integrated high efficiency heat exchanger for tiltrotor transmission oil cooling", + "topic": "JTI-CS2-2015-CFP02-FRC-01-05" +},{ + "projectID": 893099, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 768908, + "title": "New technologies and life cycle management for reconfigurable and reusable customised products", + "topic": "FOF-10-2017" +},{ + "projectID": 728194, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 765811, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 701336, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678777, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101028425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 728275, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 857124, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 673677, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 690689, + "title": "Enhancing resource efficiency of aviation", + "topic": "MG-1.2-2015" +},{ + "projectID": 841592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101010875, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 957069, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101027867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 851630, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 789875, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 812938, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 636992, + "title": "Manufacturing processes for complex structures and geometries with efficient use of material", + "topic": "FoF-02-2014" +},{ + "projectID": 670166, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 836051, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841879, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803758, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 886057, + "title": "Innovative flight data measurements to support the aerodynamic analysis of a compound helicopter demonstrator", + "topic": "JTI-CS2-2019-CFP10-AIR-02-80" +},{ + "projectID": 956144, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 860274, + "title": "InCo Flagship on Integrated multimodal, low-emission freight transport systems and logistics", + "topic": "MG-2-9-2019" +},{ + "projectID": 814225, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101030883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 768612, + "title": "Integrated approach to process optimisation for raw material resources efficiency, excluding recovery technologies of waste streams", + "topic": "SPIRE-07-2017" +},{ + "projectID": 101025242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816658, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862015, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 805004, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 828385, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 811249, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 660255, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 643050, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 800371, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837555, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026278, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802331, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 681055, + "title": "ERA NET: Antimicrobial resistance", + "topic": "HCO-12-2015" +},{ + "projectID": 840270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 815520, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817819, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 759176, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 816119, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001275, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 810685, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 890441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945638, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681203, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 648661, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 735952, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 705432, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 682819, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 661715, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885145, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 835108, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 745798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648377, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 658155, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002208, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 802929, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101022293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716087, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 874976, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739756, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 727292, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 718971, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 658806, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 852452, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 823552, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703186, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 781080, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 708232, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 660411, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 847419, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 682809, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 772853, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 881101, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705648, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 811749, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639638, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 825999, + "title": "Disruptive innovation in clean energy technologies", + "topic": "LC-SC3-RES-2-2018" +},{ + "projectID": 803894, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 899900, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 705631, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 836046, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659213, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694307, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 746690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660280, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028879, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670216, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101029908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834221, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 645322, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 729196, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 742870, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 854126, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 815703, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 884988, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 665587, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 956601, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 749336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 720793, + "title": "Microbial chassis platforms with optimized metabolic pathways for industrial innovations through systems biology", + "topic": "BIOTEC-03-2016" +},{ + "projectID": 758824, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 714608, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101026885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 638009, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 899652, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 802800, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 964505, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 640156, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 800578, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 732328, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 867455, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 966720, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 742964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 949208, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 724228, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 717493, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 716512, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 660795, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 829044, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 681760, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682398, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 838773, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 824162, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 666983, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 724198, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 790369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 752022, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 640979, + "title": "Understanding, preventing and mitigating the potential environmental impacts and risks of shale gas exploration and exploitation", + "topic": "LCE-16-2014" +},{ + "projectID": 827561, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795043, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101016776, + "title": "Neuromorphic computing technologies", + "topic": "FETPROACT-09-2020" +},{ + "projectID": 797323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949267, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 898588, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885076, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101022759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020684, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 826771, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785401, + "title": "Solutions for voice interaction towards natural crew assistant", + "topic": "JTI-CS2-2017-CFP06-SYS-01-05" +},{ + "projectID": 850869, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 724100, + "title": "Addressing aviation safety challenges", + "topic": "MG-3.1-2016" +},{ + "projectID": 658999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101030415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799078, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 709914, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 680002, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101022448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 713547, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 658914, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818750, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 840425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851734, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 743580, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694401, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 707407, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 816189, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794425, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 715154, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 643950, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 753470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 708295, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 757983, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 705957, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 964877, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 654837, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 881782, + "title": "Artificial Intelligence (A.I.) for the railway sector", + "topic": "S2R-OC-IPX-01-2019" +},{ + "projectID": 743035, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 897384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 868365, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826923, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 803370, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 677823, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 945846, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 724295, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 845336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 640003, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 660484, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 839179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 889058, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101033260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787331, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 950212, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 949131, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 767198, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 731593, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 842407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 884741, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 644632, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 101022162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101017098, + "title": "Neuromorphic computing technologies", + "topic": "FETPROACT-09-2020" +},{ + "projectID": 890254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 757867, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 773196, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 647769, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 656730, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 640151, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 721820, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 948063, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 703489, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 845995, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001899, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 706899, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 732266, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 637885, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637422, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 812672, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101032147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 946966, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727658, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 677029, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 780848, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 951908, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 666513, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 841578, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 834238, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 659128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 695313, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101023536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787061, + "title": "Technologies for prevention, investigation, and mitigation in the context of fight against crime and terrorism", + "topic": "SEC-12-FCT-2016-2017" +},{ + "projectID": 884116, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 778450, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 828841, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 747848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773161, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 870437, + "title": "Space Weather", + "topic": "SU-SPACE-22-SEC-2019" +},{ + "projectID": 101001081, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 845884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841995, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724036, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 949493, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 670035, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 948105, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 798853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786767, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 843627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101004141, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 101026935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816050, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804247, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 804383, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 866008, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 883363, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 889805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714291, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 847630, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714087, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 947221, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 694925, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 834115, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 742137, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101030918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773672, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 838246, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 644402, + "title": "Cracking the language barrier", + "topic": "ICT-17-2014" +},{ + "projectID": 840903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966764, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 844003, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716862, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 849921, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702402, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 946900, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838018, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 676240, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 817170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655292, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 896004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 692449, + "title": "Smart Mobility", + "topic": "ECSEL-01-2015" +},{ + "projectID": 838576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 756841, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 965787, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 948219, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 722642, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 697125, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 657546, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 953939, + "title": "Cities as climate-resilient, connected multimodal nodes for smart and clean mobility: new approaches towards demonstrating and testing innovative solutions", + "topic": "LC-MG-1-12-2020" +},{ + "projectID": 958645, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 869324, + "title": "Strengthening international cooperation on sustainable urbanisation: nature-based solutions for restoration and rehabilitation of urban ecosystems", + "topic": "SC5-13-2018-2019" +},{ + "projectID": 750999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 771082, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 653739, + "title": "Strengthening the research and innovation strategies of the transport industries in Europe", + "topic": "MG-9.6-2014" +},{ + "projectID": 740829, + "title": "Economics of Cybersecurity", + "topic": "DS-04-2016" +},{ + "projectID": 657784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 852169, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101029193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882601, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 952030, + "title": "WIRE XI Conference", + "topic": "IBA-SEWP-WIRE-11-2020" +},{ + "projectID": 101032504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659083, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101024021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 860787, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 822357, + "title": "Innovative solutions for inclusive and sustainable urban environments", + "topic": "TRANSFORMATIONS-03-2018-2019" +},{ + "projectID": 804135, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 677622, + "title": "Unlocking the growth potential of rural areas through enhanced governance and social innovation", + "topic": "ISIB-03-2015" +},{ + "projectID": 888704, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639084, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 681295, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 727524, + "title": "Social Sciences and Humanities Support for the Energy Union", + "topic": "LCE-31-2016-2017" +},{ + "projectID": 749312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 643434, + "title": "Support for international infectious disease preparedness research", + "topic": "HCO-04-2014" +},{ + "projectID": 767456, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 759798, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 856602, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 825134, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 817296, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 797989, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824588, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 952471, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 732851, + "title": "Net Innovation Initiative", + "topic": "ICT-12-2016" +},{ + "projectID": 101028867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 765141, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 803335, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 660935, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 847068, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-EE-11-2018-2019-2020" +},{ + "projectID": 748242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660652, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 833702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658047, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 741527, + "title": "Opening Research Organisations in the European Research Area", + "topic": "SwafS-04-2016" +},{ + "projectID": 874434, + "title": "International Conference on Research Infrastructures", + "topic": "IBA-INFRA-CONF-2019" +},{ + "projectID": 845118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 640277, + "title": "Technology “demonstrator projects” for exploration", + "topic": "COMPET-09-2014" +},{ + "projectID": 840032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 662152, + "title": "Supporting the licensing of geological repositories", + "topic": "NFRP-05-2015" +},{ + "projectID": 638666, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 787719, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696173, + "title": "Empowering stakeholders to assist public authorities in the definition and implementation of sustainable energy policies and measures", + "topic": "EE-09-2015" +},{ + "projectID": 636626, + "title": "Reducing impacts and costs of freight and service trips in urban areas", + "topic": "MG-5.2-2014" +},{ + "projectID": 959211, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694978, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 795614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 810139, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 748114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702134, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 870698, + "title": "Enhancing social rights and EU citizenship", + "topic": "GOVERNANCE-04-2019" +},{ + "projectID": 714804, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 826189, + "title": "Paradigm shifts for railway", + "topic": "S2R-OC-IPX-01-2018" +},{ + "projectID": 749519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007915, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 694266, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 674962, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 659595, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101026000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870722, + "title": "Trust in governance", + "topic": "GOVERNANCE-01-2019" +},{ + "projectID": 757247, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 739560, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 101023118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 777363, + "title": "JOINT INFLUENZA VACCINE EFFECTIVENESS STUDIES", + "topic": "IMI2-2016-09-06" +},{ + "projectID": 842019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 753937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101019318, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 792489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 714868, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 815008, + "title": "Harnessing and understanding the impacts of changes in urban mobility on policy making by city-led innovation for sustainable urban mobility", + "topic": "LC-MG-1-3-2018" +},{ + "projectID": 741095, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101004494, + "title": "Technological transformations, skills and globalization - future challenges for shared prosperity", + "topic": "TRANSFORMATIONS-18-2020" +},{ + "projectID": 657466, + "title": "The human factor in the energy system", + "topic": "LCE-20-2014" +},{ + "projectID": 831704, + "title": "Multi-stakeholder design platforms and public-private-people partnerships for sustainable cities", + "topic": "SC5-IBA-2018-UNHABITAT" +},{ + "projectID": 727028, + "title": "EU eHealth Interoperability conformity assessment", + "topic": "SC1-HCO-15-2016" +},{ + "projectID": 846474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727097, + "title": "Spatial justice, social cohesion and territorial inequalities", + "topic": "REV-INEQUAL-07-2016" +},{ + "projectID": 769458, + "title": "Innovative approaches for integrating urban nodes in the TEN-T core network corridors", + "topic": "MG-4.3-2017" +},{ + "projectID": 731765, + "title": "Content Integration", + "topic": "SESAR.IR-VLD.Wave1-01-2015" +},{ + "projectID": 645809, + "title": "Encouraging the research and innovation cooperation between the Union and selected regional partners – proposals targeting Black Sea, Middle East, Africa", + "topic": "INT-02-2014" +},{ + "projectID": 897072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661057, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 759707, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101006518, + "title": "Grounding RRI in society with a focus on citizen science", + "topic": "SwafS-23-2020" +},{ + "projectID": 825671, + "title": "Establishment of an International Network of Social Sciences Research Centres to help address governance and other challenges in the preparedness for and the response to infectious threats", + "topic": "SC1-HCO-06-2018" +},{ + "projectID": 728499, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 715450, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 676627, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 823998, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 747313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101008186, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101000717, + "title": "FOOD 2030 - Empowering cities as agents of food system transformation", + "topic": "CE-FNR-07-2020" +},{ + "projectID": 841524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 759414, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 797977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 874473, + "title": "PJ.19 W2 Content Integration, Performance Management and Business Case Development", + "topic": "SESAR-IR-VLD-WAVE2-01-2019" +},{ + "projectID": 945380, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 739850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 730884, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 872550, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 654206, + "title": "e-Infrastructure policy development and international cooperation", + "topic": "INFRASUPP-7-2014" +},{ + "projectID": 637595, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 842656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 826106, + "title": "Prototyping a European interoperable Electronic Health Record (EHR) exchange", + "topic": "SC1-DTH-08-2018" +},{ + "projectID": 101021787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716212, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 713768, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 952189, + "title": "5G PPP – 5G for Connected and Automated Mobility (CAM)", + "topic": "ICT-53-2020" +},{ + "projectID": 949690, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 819800, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 897318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716439, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 676166, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 723076, + "title": "IoT/Cloud/Big Data platforms in social application contexts", + "topic": "EUJ-02-2016" +},{ + "projectID": 726504, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 794604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003440, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 892252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 883676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 649883, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2014" +},{ + "projectID": 101001964, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 634943, + "title": "SPACE", + "topic": "SPACE" +},{ + "projectID": 689364, + "title": "Strategic international dialogues and cooperation with raw materials producing countries and industry", + "topic": "SC5-13f-2015" +},{ + "projectID": 898538, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645096, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 713793, + "title": "Smart governance, network resilience and streamlined delivery of infrastructure innovation", + "topic": "MG-8.4b-2015" +},{ + "projectID": 945345, + "title": "Health Outcomes Observatories – empower patients with tools to measure their outcomes in a standardised manner creating transparency of health outcomes", + "topic": "IMI2-2019-18-02" +},{ + "projectID": 101029081, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 763558, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 873112, + "title": "Grounding RRI practices in research and innovation funding and performing organisations", + "topic": "SwafS-05-2018-2019" +},{ + "projectID": 853966, + "title": "Integrated research platforms enabling patient-centric drug development", + "topic": "IMI2-2018-15-01" +},{ + "projectID": 694632, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 646440, + "title": "Developing a framework for common, transparent data collection and performance measurement to allow comparability and replication between solutions and best-practice identification", + "topic": "SCC-02-2014" +},{ + "projectID": 797267, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 744268, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 772284, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 684589, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 812776, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 669582, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 758448, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 714560, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 755764, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 794484, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002870, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 844318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724734, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 966623, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 852086, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655604, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 734718, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 643062, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 950010, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 846567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 805609, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 843352, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679949, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 852139, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 840711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679168, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 895927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659263, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825108, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 679010, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 703217, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646696, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 852786, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 948031, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101028152, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787340, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 951319, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101018151, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 812829, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 952781, + "title": "Presidency events – Innovation for better ageing", + "topic": "IBA-SC1-Presidency-2020" +},{ + "projectID": 671251, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 804005, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 702799, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 725907, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 827723, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 706567, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 754411, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 885192, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 841893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704506, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 746778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 737619, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 846144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003216, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 723375, + "title": "New ways of supporting development and implementation of neighbourhood-level and urban-district-level transport innovations", + "topic": "MG-4.5-2016" +},{ + "projectID": 865898, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 664932, + "title": "Supporting structural change in research organisations to promote Responsible Research and Innovation", + "topic": "ISSI-5-2014" +},{ + "projectID": 786894, + "title": "Human Factor for the Prevention, Investigation, and Mitigation of criminal and terrorist acts", + "topic": "SEC-07-FCT-2016-2017" +},{ + "projectID": 687828, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2015" +},{ + "projectID": 101031798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825477, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 763784, + "title": "User-driven innovation: value creation through design-enabled innovation", + "topic": "CO-CREATION-02-2016" +},{ + "projectID": 652677, + "title": "Supporting international cooperation initiatives: Atlantic Ocean Cooperation Research Alliance", + "topic": "BG-14-2014" +},{ + "projectID": 750553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 715125, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 677363, + "title": "Small farms but global markets: the role of small and familiy farms in food and nutrition security", + "topic": "SFS-18-2015" +},{ + "projectID": 101004319, + "title": "Space traffic management", + "topic": "SU-SPACE-21-SEC-2020" +},{ + "projectID": 699523, + "title": "H2020-Adhoc-2014-20", + "topic": "Environment" +},{ + "projectID": 716216, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 691053, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 695285, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 856632, + "title": "HPC and Big Data enabled Large-scale Test-beds and Applications", + "topic": "ICT-11-2018-2019" +},{ + "projectID": 890187, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101016233, + "title": "Behavioural, social and economic impacts of the outbreak response", + "topic": "SC1-PHE-CORONAVIRUS-2020-2C" +},{ + "projectID": 706140, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852176, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 959738, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 653631, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1b-2014" +},{ + "projectID": 703047, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801359, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 649925, + "title": "Construction skills", + "topic": "EE-04-2014" +},{ + "projectID": 707763, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731031, + "title": "Support to policies and international cooperation for e-infrastructures", + "topic": "INFRASUPP-03-2016" +},{ + "projectID": 780271, + "title": "Next Generation Internet", + "topic": "ICT-41-2017" +},{ + "projectID": 836819, + "title": "Transition in coal intensive regions", + "topic": "LC-SC3-CC-6-2018" +},{ + "projectID": 951975, + "title": "Big Data Innovation Hubs", + "topic": "DT-ICT-05-2020" +},{ + "projectID": 861509, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 785257, + "title": "Improving the Performances of the SST at European Level", + "topic": "SGA-Space-Perfo-01-2017" +},{ + "projectID": 653866, + "title": "Conflict prevention and peace building topic 1: Enhancing the civilian conflict prevention and peace building capabilities of the EU", + "topic": "BES-12-2014" +},{ + "projectID": 892444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 953618, + "title": "Network and traffic management for future mobility", + "topic": "MG-2-11-2020" +},{ + "projectID": 949795, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 850891, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 723265, + "title": "Networked and efficient logistics clusters", + "topic": "MG-5.1-2016" +},{ + "projectID": 843269, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692202, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101031553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660394, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 693382, + "title": "The European Union and the Eastern Partnership", + "topic": "INT-08-2015" +},{ + "projectID": 101025483, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803870, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 767372, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 707334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704537, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101033438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020977, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 746247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652643, + "title": "Ocean literacy – Engaging with society – Social Innovation", + "topic": "BG-13-2014" +},{ + "projectID": 870789, + "title": "Past, present and future of differentiation in European governance", + "topic": "GOVERNANCE-02-2018-2019" +},{ + "projectID": 880828, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 784994, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 764717, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 865976, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101027005, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 885069, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 871069, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 794453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740634, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 853979, + "title": "Intravenous treatments of serious infections (urinary tract infections, intra-abdominal infections & hospital-acquired pneumonia/ventilator associated pneumonia) caused by Gram(-) bacteria (Enterobacteriaceae +/- Pseudomonas and/or Acinetobacter)", + "topic": "IMI2-2018-16-07" +},{ + "projectID": 823744, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 678783, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 689271, + "title": "Stepping up EU research and innovation cooperation in the water area", + "topic": "WATER-3-2015" +},{ + "projectID": 657733, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 776740, + "title": "Coordination of citizens' observatories initiatives", + "topic": "SC5-19-2017" +},{ + "projectID": 841546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 822730, + "title": "Towards forward-looking migration governance: addressing the challenges, assessing capacities and designing future strategies", + "topic": "MIGRATION-02-2018" +},{ + "projectID": 857641, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 851040, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 806968, + "title": "European Health Data Network (EHDN)", + "topic": "IMI2-2017-12-04" +},{ + "projectID": 882424, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 661479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 671048, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 780495, + "title": "Big Data PPP: Large Scale Pilot actions in sectors best benefitting from data-driven innovation", + "topic": "ICT-15-2016-2017" +},{ + "projectID": 716923, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 817949, + "title": "Contracts for effective and lasting delivery of agri-environmental public goods", + "topic": "RUR-03-2018" +},{ + "projectID": 883811, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 793570, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 814427, + "title": "WIRE IX Conference", + "topic": "IBA-SEWP-WIRE-9-2018" +},{ + "projectID": 691895, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2015" +},{ + "projectID": 715148, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 758817, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 839098, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714440, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 963893, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 853992, + "title": "Blockchain Enabled Healthcare", + "topic": "IMI2-2018-15-02" +},{ + "projectID": 951923, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 681463, + "title": "COST-Networking-2015", + "topic": "COST-Networking-2015" +},{ + "projectID": 780473, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 949838, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 656824, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 725563, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 751284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703165, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 845956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 957532, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 883700, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 794012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 803087, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 656361, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 952096, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 756436, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 725780, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101002921, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 898470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948027, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 754657, + "title": "Promoting mental health and well-being in the young", + "topic": "SC1-PM-07-2017" +},{ + "projectID": 896318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 813457, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 646453, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2014" +},{ + "projectID": 865856, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 665683, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 835286, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 646923, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 759089, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 896892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 814881, + "title": "Harnessing and understanding the impacts of changes in urban mobility on policy making by city-led innovation for sustainable urban mobility", + "topic": "LC-MG-1-3-2018" +},{ + "projectID": 724151, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 804051, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 802512, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101028811, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773814, + "title": "New partnerships and tools to enhance European capacities for in-situ conservation", + "topic": "SFS-04-2017" +},{ + "projectID": 101007312, + "title": "Digital Excellence", + "topic": "ECSEL-2020-4-CSA" +},{ + "projectID": 681884, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 964215, + "title": "ERA-NET: Sustained collaboration of national and regional programmes in research on brain-related diseases and disorders of the nervous system", + "topic": "SC1-HCO-16-2020" +},{ + "projectID": 823080, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 706999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 850784, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101030217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702137, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851257, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 753819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 801823, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 697790, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 866093, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 835530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836271, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 840543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 664386, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 779316, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 950584, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 741941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 948349, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 657702, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 844497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705283, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 634288, + "title": "Developing and comparing new models for safe and efficient, prevention oriented health and care systems", + "topic": "PHC-23-2014" +},{ + "projectID": 824484, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 872613, + "title": "Big data solutions for energy", + "topic": "DT-ICT-11-2019" +},{ + "projectID": 759681, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 708492, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 742106, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 804949, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 860114, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 966674, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 798050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 752870, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660157, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 836139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101033752, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 749814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704438, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 669088, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 101032112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794726, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724244, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 896324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003361, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 670118, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101030857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 686865, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101002725, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 743263, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 698809, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 689744, + "title": "Demonstrating the concept of 'Citizen Observatories'", + "topic": "SC5-17-2015" +},{ + "projectID": 739573, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 746265, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 688670, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 833444, + "title": "Strategic pre-commercial procurements of innovative, advanced systems to support security", + "topic": "SU-GM02-2018-2020" +},{ + "projectID": 964997, + "title": "Bridging the divide in health research and innovation – boosting return on investment", + "topic": "SC1-HCO-03-2020" +},{ + "projectID": 730844, + "title": "Interoperability Framework governance, ensuring its market uptake and sustainability", + "topic": "S2R-OC-IP4-01-2016" +},{ + "projectID": 671617, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 653670, + "title": "Next generation transport infrastructure: resource efficient, smarter and safer", + "topic": "MG-8.2b-2014" +},{ + "projectID": 708146, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 832537, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727577, + "title": "Advisors' roles in the functioning of AKIS and advisory policies boosting innovation in sustainable agriculture", + "topic": "RUR-14-2016" +},{ + "projectID": 646653, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 753608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 857119, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 822166, + "title": "ERA-Net Co-fund - Renegotiating democratic governance in times of disruptions", + "topic": "GOVERNANCE-14-2018" +},{ + "projectID": 660933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002711, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 862716, + "title": "Innovative and citizen-driven food system approaches in cities", + "topic": "CE-SFS-24-2019" +},{ + "projectID": 822735, + "title": "Trends and forward-looking scenarios in global governance", + "topic": "GOVERNANCE-06-2018" +},{ + "projectID": 804288, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 708497, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 893825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 850450, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 759370, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 872592, + "title": "Big data solutions for energy", + "topic": "DT-ICT-11-2019" +},{ + "projectID": 656262, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 857261, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 764860, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 824612, + "title": "Building the SwafS knowledge base", + "topic": "SwafS-20-2018-2019" +},{ + "projectID": 101003403, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 951515, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 957258, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 725798, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 727721, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 706519, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 727988, + "title": "Consolidated policy framework and governance models for synergies in rural-urban linkages", + "topic": "RUR-01-2016" +},{ + "projectID": 773012, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 771985, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 847673, + "title": "Presidency event (conference) in Romania: EuroNanoForum 2019", + "topic": "IBA-LEIT-NMBP-EuroNanoForum-2018" +},{ + "projectID": 951771, + "title": "Big Data Innovation Hubs", + "topic": "DT-ICT-05-2020" +},{ + "projectID": 803763, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 824070, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 101000385, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101003329, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 642961, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 845542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 802923, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 817574, + "title": "Towards a Baltic and North Sea research and innovation programme", + "topic": "BG-01-2018" +},{ + "projectID": 844636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 792762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 762632, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 648716, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 704110, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956909, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101007820, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 645706, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 898036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659842, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 804315, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 818707, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 776604, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 871920, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 101000132, + "title": "Socio-economic research: non-energy impacts and behavioural insights on energy efficiency interventions", + "topic": "LC-SC3-EC-4-2020" +},{ + "projectID": 799805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 861540, + "title": "Logistics solutions that deal with requirements of the 'on demand economy' and for shared-connected and low-emission logistics operations", + "topic": "LC-MG-1-10-2019" +},{ + "projectID": 659530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 646133, + "title": "Business models with new supply chains for sustainable customer-driven small series production", + "topic": "NMP-35-2014" +},{ + "projectID": 886141, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707406, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 707404, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 770680, + "title": "The strategic potential of EU external trade policy", + "topic": "ENG-GLOBALLY-05-2017" +},{ + "projectID": 687874, + "title": "International partnership building and support to dialogues with high income countries", + "topic": "ICT-38-2015" +},{ + "projectID": 788433, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101026044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020598, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 739939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703490, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 965586, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 885090, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 968496, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804089, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 847749, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 677878, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 655601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639564, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 724530, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 681829, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 949722, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 851778, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 759651, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 865592, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 714666, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 711389, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 794986, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655605, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708592, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860563, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 725729, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 861423, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 897678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948728, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 715508, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 726251, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 802998, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 882832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101038088, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 728030, + "title": "Reinforcing international cooperation on sustainable aquaculture production with countries from South-East Asia", + "topic": "SFS-24-2016" +},{ + "projectID": 722826, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 765408, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 750464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 680235, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 710549, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2015" +},{ + "projectID": 643597, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 877114, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781703, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101026643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661780, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 753293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 883746, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 759112, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 701732, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 789100, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 647313, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 807015, + "title": "Discovery and characterisation of blood-brain barrier targets and transport mechanisms for brain delivery of therapeutics to treat neurodegenerative & metabolic diseases", + "topic": "IMI2-2017-12-06" +},{ + "projectID": 101033080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 740623, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 851693, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101015956, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 825618, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 796177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 873119, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 949252, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101018877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 715022, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 795948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 849029, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 666810, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 680966, + "title": "ERA NET Collaboration and alignment of national programmes and activities in the area of brain-related diseases and disorders of the nervous system", + "topic": "HCO-11-2015" +},{ + "projectID": 643818, + "title": "eHealth interoperability", + "topic": "PHC-34-2014" +},{ + "projectID": 101019268, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101002689, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 786366, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 835546, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 648768, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101001145, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 739501, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101019325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 828621, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725240, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 712198, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 951851, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 866222, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 800027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 962533, + "title": "The Common Foreign and Security Policy and the expanding scope of the EU's external engagement", + "topic": "SU-GOVERNANCE-07-2020" +},{ + "projectID": 101027465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 678375, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 749899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660089, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 713630, + "title": "SPACE", + "topic": "SPACE" +},{ + "projectID": 730838, + "title": "Long-term needs of different actors in the railway sector", + "topic": "S2R-OC-CCA-01-2015" +},{ + "projectID": 870913, + "title": "Innovation in government - building an agile and citizen-centric public sector", + "topic": "GOVERNANCE-18-2019" +},{ + "projectID": 948753, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 695709, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 702030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727984, + "title": "Water farms – improving farming and its impact on the supply of drinking water", + "topic": "RUR-04-2016" +},{ + "projectID": 706680, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884839, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 898253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 861952, + "title": "COST", + "topic": "SGA-SEWP-COST-2019" +},{ + "projectID": 688194, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 824273, + "title": "New regulatory frameworks to enable effective deployment of emerging technologies and business/operating models for all transport modes", + "topic": "MG-4-1-2018" +},{ + "projectID": 660793, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640891, + "title": "Knowing, doing, being: cognition beyond problem solving", + "topic": "FETPROACT-2-2014" +},{ + "projectID": 845658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656161, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 874456, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 949364, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101001233, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 843239, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 871481, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 745727, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 964197, + "title": "Actions in support of the International Consortium for Personalised Medicine", + "topic": "SC1-HCO-01-2018-2019-2020" +},{ + "projectID": 643889, + "title": "eHealth interoperability", + "topic": "PHC-34-2014" +},{ + "projectID": 676550, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 664771, + "title": "Reducing the risk of exporting non ethical practices to third countries", + "topic": "GARRI-6-2014" +},{ + "projectID": 750745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945357, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 101017419, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 723240, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 771795, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 702465, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 741298, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 703293, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 795998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949184, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 637860, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 115902, + "title": "Remote Assessment of Disease and Relapse - CNS", + "topic": "IMI2-2015-03-01" +},{ + "projectID": 745823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 760891, + "title": "New Plant Breeding Techniques (NPBT) in molecular farming: Multipurpose crops for industrial bioproducts", + "topic": "BIOTEC-07-2017" +},{ + "projectID": 101032056, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 756502, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 742138, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 854931, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658589, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 776783, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 758212, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 746507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803332, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 891247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708563, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 771709, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 638289, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 896051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 857470, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 894063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 725149, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101029852, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 959420, + "title": "Developing deliberative and participatory democracies through experimentation", + "topic": "GOVERNANCE-21-2020" +},{ + "projectID": 696126, + "title": "Increasing energy performance of existing buildings through process and organisation innovations and creating a market for deep renovation", + "topic": "EE-05-2015" +},{ + "projectID": 799462, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 867425, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 642317, + "title": "Biodiversity and ecosystem services: drivers of change and causalities", + "topic": "SC5-06-2014" +},{ + "projectID": 101006439, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 802087, + "title": "International Conference on Research Infrastructures", + "topic": "IBA-INFRA-CONFERENCE-2017" +},{ + "projectID": 747947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724866, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 841379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677687, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 797716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677844, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 740491, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101026909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 768826, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 659079, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 892772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890457, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101000969, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 705311, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804881, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 646788, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 780807, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 678610, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 661667, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 725825, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 757184, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 803984, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 737609, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 678302, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 746173, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659719, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 661452, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 658368, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 769798, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 897941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787386, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 852765, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 896996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862571, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 822968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 949990, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101030864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701614, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 716800, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 721635, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 863102, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101020617, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 694584, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 840605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707047, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659927, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 640087, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101031073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 648082, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 747429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707359, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 712821, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 834677, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 789274, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 797144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802435, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 838736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 839465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742426, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 819644, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 804229, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 845631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 669157, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 687681, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 869178, + "title": "ERA-NET Cofund action for climate action, environment, resource efficiency and raw materials", + "topic": "SC5-21-2019-2020" +},{ + "projectID": 796838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 688928, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 797256, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 865105, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 825566, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 661429, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 852585, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 747527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 733296, + "title": "Towards globalisation of the Joint Programming Initiative on Antimicrobial resistance", + "topic": "SC1-HCO-04-2016" +},{ + "projectID": 786645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794343, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101007299, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 658499, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 791207, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 709015, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 851460, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101023970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 779751, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 794861, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660689, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 835197, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 754497, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 843569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 956477, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 639489, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 856487, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 804182, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 825348, + "title": "Coordinating European brain research and developing global initiatives", + "topic": "SC1-HCO-10-2018" +},{ + "projectID": 714366, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 752408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659778, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703597, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 836225, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 845992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 641171, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 846764, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646925, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101032481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864893, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 675619, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 786081, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701852, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891488, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 949609, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 753976, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101019280, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 838787, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 829186, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 798505, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 759817, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 693742, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 948677, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 677467, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101018277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803035, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 836783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 800104, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754465, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 865634, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 850691, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 714762, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 655374, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 638258, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 852573, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 647168, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 845066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707392, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772953, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 694282, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 797140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 803621, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 845466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787527, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 679820, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101033093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 716761, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 834317, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 852387, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 883543, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 803258, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 892294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 867431, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 852187, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 681978, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101029807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660976, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 682379, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 870578, + "title": "The impact of technological transformations on children and youth", + "topic": "DT-TRANSFORMATIONS-07-2019" +},{ + "projectID": 868191, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 661132, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639416, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 949242, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 853378, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 648480, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 840964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695140, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 949631, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 898052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 679058, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 794832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 780061, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 893369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819229, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 658496, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 636458, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 859937, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 851919, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 798326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660964, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692023, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 702726, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 660397, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694798, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 948857, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101020091, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 657239, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 812638, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 791791, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 748691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 950328, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101021345, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 746497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 775070, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 692692, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 888494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 757393, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 765445, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 705572, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 750733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 835032, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 707801, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 876705, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862485, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 724805, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 706976, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655379, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875683, + "title": "User centric charging infrastructure", + "topic": "LC-GV-03-2019" +},{ + "projectID": 101023059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865568, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 786330, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 704393, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 791948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758580, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 896354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 833548, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 741550, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 828649, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 709288, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 633428, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 701660, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 652291, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 708408, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655423, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 790079, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 895300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875212, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101024023, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003384, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 882779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657749, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002646, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 802091, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 747836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677270, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 750200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833816, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 851145, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 899822, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 752621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 682422, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 655153, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678250, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 876429, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945361, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 692617, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 708842, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 637638, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 661543, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101021560, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 843722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024590, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715968, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 843455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 857600, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101007926, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 658464, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 757390, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 811285, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 703961, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794298, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 713514, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 762982, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 798768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 853560, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 844321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 813546, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 635617, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 669742, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 647844, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 797567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 649117, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 854766, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714388, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 746154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 725693, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 646594, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 835102, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 772452, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 655137, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101030783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949500, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 868340, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743216, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 897378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 852455, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101026260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 682345, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 681777, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 951284, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 949191, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101017716, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 951477, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 734862, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 757763, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101031774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101038079, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 726152, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 648898, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 819151, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 670980, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 861166, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 639377, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844364, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694086, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 810331, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 799638, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 647893, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647051, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 758952, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 729367, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 801954, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 715311, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 792948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 695638, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 750955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 792967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660477, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658057, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 717701, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 695190, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 716736, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 951330, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101026592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 864875, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 677683, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 853251, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 952422, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 804746, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 669249, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 851966, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659910, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639209, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 955664, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 747736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 816742, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659633, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 634579, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 692637, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 962124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858571, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636928, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 757369, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 716575, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 725675, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101038058, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 827820, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885583, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639707, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 859156, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893469, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833275, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 774567, + "title": "Interaction between people, oceans and seas: a strategic approach towards healthcare and well-being", + "topic": "BG-06-2017" +},{ + "projectID": 658520, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723009, + "title": "New and improved transport concepts in waterborne transport", + "topic": "MG-2.3-2016" +},{ + "projectID": 885022, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 821934, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 821046, + "title": "Towards operational forecasting of earthquakes and early warning capacity for more resilient societies", + "topic": "SC5-17-2018" +},{ + "projectID": 851622, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 714769, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 816913, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101008626, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 687323, + "title": "Bringing EO applications to the market", + "topic": "EO-1-2015" +},{ + "projectID": 101014571, + "title": "Next Generation Track Transition Zones (TD3.4)", + "topic": "S2R-OC-IP3-01-2020" +},{ + "projectID": 787446, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 892916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708539, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 813099, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101026396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 898315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 778354, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 861897, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 804236, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 806446, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 744737, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 663900, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 795924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656132, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706329, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 711620, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 668738, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 796759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 674983, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 708459, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 889359, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875518, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 744320, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 648670, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 754346, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 950762, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 804665, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 894290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744110, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 826722, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666869, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 845908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 647863, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 880322, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 766124, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101019223, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 867223, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862507, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 771282, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 894795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 640254, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 867659, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821283, + "title": "Translational Safety Biomarker Pipeline (TransBioLine): Enabling development and implementation of novel safety biomarkers in clinical trials and diagnosis of disease", + "topic": "IMI2-2017-13-11" +},{ + "projectID": 644167, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 853932, + "title": "Progress novel assets (one FTIH start) for non-tubercular mycobacteria (NTM) that may act synergistically with bedaquiline and cytochrome bc drugs", + "topic": "IMI2-2018-16-02" +},{ + "projectID": 727306, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 966687, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 823282, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 722729, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 663622, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 808569, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 714224, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 825273, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 747422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 729048, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 963982, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 877042, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768524, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 752415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 884823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 737599, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 706581, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024350, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 676144, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 838559, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862077, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 822258, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963986, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 679345, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 714043, + "title": "Integration of a property simulation tool for integrated virtual design & manufacturing of forged discs/rotors for aero engine applications", + "topic": "JTI-CS2-2015-CFP02-ENG-02-03" +},{ + "projectID": 677772, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 817113, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875328, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 883756, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 762351, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 713537, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 677645, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 862078, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 672231, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 831959, + "title": "Development and verification of microstructure, residual stress and deformation simulation capability for additive free-form deposition using multiple superalloys", + "topic": "JTI-CS2-2018-CfP08-ENG-02-09" +},{ + "projectID": 725483, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 714478, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 845838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 762082, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 717273, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 639904, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 817615, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 754282, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 707015, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 755988, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 668532, + "title": "Development of new diagnostic tools and technologies: in vivo medical imaging technologies", + "topic": "PHC-11-2015" +},{ + "projectID": 701421, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 887880, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 637730, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 737534, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 727416, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 692327, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 886169, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690966, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 766606, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 713140, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 892048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745220, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101023390, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 662458, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 662461, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 713482, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 840088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899872, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 848497, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 715975, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 692924, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 734907, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 759108, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 957585, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 748447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 963443, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 736516, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 957535, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 838494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641833, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 861278, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 727484, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 658850, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 862216, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 735848, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 880019, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 634588, + "title": "Novel marine derived biomolecules and industrial biomaterials", + "topic": "BG-03-2014" +},{ + "projectID": 762948, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 821513, + "title": "Support and coordination action for the projects of the Neurodegeneration area of the Innovative Medicines Initiative", + "topic": "IMI2-2017-13-05" +},{ + "projectID": 713758, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 773750, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 867383, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837501, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853886, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 699978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 817071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028366, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645756, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 786633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657292, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 954353, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 661441, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 828774, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101038053, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 899431, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 963936, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 867137, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713689, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 659932, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 807327, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 955879, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 790113, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101024357, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 796973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101018461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 713691, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 708354, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 642295, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101022431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 709161, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 754375, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 713612, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 680465, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 748273, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 761906, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 868342, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868644, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 804438, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 666798, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 101002326, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 665725, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 852146, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 657244, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 795116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 679980, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 771567, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 742020, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 638193, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 656519, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655424, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 876634, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854707, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 953138, + "title": "Next generation organ-on-chip (RIA-LS)", + "topic": "DT-NMBP-23-2020" +},{ + "projectID": 966813, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 750403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642720, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 790030, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 844197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795082, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722717, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 966636, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 816576, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663119, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 888726, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 757444, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 867461, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819934, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 864311, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 854430, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681679, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 746713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 692340, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 899906, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 825828, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 662507, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 844135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 963919, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 737562, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 801728, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 888341, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807012, + "title": "Exploitation of IMI project results", + "topic": "IMI2-2017-11-01" +},{ + "projectID": 697804, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 738774, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 762315, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101007931, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 798836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 714317, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 693184, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 860003, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 763059, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 796460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727575, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 856226, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808524, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 949830, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 836947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 733079, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 678623, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 637971, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 858390, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700862, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026675, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 956154, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 792686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 812954, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 634893, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 821528, + "title": "Improving the preclinical prediction of adverse effects of pharmaceuticals on the nervous system", + "topic": "IMI2-2017-13-10" +},{ + "projectID": 768728, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 649116, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 856068, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876415, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768929, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101002317, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 777995, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 883766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 963675, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 836129, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 743909, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 956146, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 840231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 954825, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767814, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 859252, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841865, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 755021, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 827153, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685401, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 639096, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 839116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 951890, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 815852, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742223, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 866126, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 898312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 890296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 815628, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 799806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 739086, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 823614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 839980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681712, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 673405, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 707581, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820588, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 641665, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 835257, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718558, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 661588, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 864832, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 766214, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 785922, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 734361, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 675179, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 666918, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 640892, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 867224, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743056, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 833184, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 958652, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 789256, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 642380, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 761828, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 669858, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 753530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899921, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 827483, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691128, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 956285, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 691058, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 758087, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 670126, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 703466, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 961703, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 784127, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 654521, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 812968, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 804583, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 644035, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 721902, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101030584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 719856, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 863245, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 704995, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 855706, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750126, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 813440, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 674474, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 101005026, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 765704, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 863214, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 734749, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 868220, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656872, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 807302, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 633413, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 899537, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 673533, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 116072, + "title": "PATHOLOGICAL NEURON-GLIA INTERACTIONS IN NEUROPATHIC PAIN", + "topic": "IMI2-2015-07-03" +},{ + "projectID": 729143, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 827858, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744248, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 767882, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 828219, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818089, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 845941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 669168, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 899856, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 816289, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822455, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750280, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 672027, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 879598, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789760, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 661106, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 739662, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 781129, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 853903, + "title": "Progress new assets (one pre-new molecular entity (preNME) and one first-time-in-human (FTIH) start) for TB that act synergistically with bedaquiline, cytochrome bc or cytochrome bd inhibitors", + "topic": "IMI2-2018-16-01" +},{ + "projectID": 721484, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 840577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730678, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 773570, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 775169, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 672134, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 860977, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 890300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 813781, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 722098, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 655035, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739627, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 848429, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739759, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 960913, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890854, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 675790, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 705600, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 726061, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 868484, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 959776, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890650, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796590, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655527, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 899835, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 116064, + "title": "A COMPREHENSIVE ‘PAEDIATRIC PRECLINICAL POC PLATFORM’ TO ENABLE CLINICAL MOLECULE DEVELOPMENT FOR CHILDREN WITH CANCER", + "topic": "IMI2-2015-07-05" +},{ + "projectID": 755225, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 838985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 875709, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 745626, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899766, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 847681, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 795980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 956875, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 816358, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726513, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 807747, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 861869, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 676841, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101000663, + "title": "Integrated health approaches and alternatives to pesticide use", + "topic": "SFS-04-2019-2020" +},{ + "projectID": 880138, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864965, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 867451, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 647311, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 855545, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882991, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 868627, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 691235, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 797113, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704292, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 791867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660039, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 828286, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898796, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 803972, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 747801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 716966, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 716734, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 753893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 848590, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 792652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024057, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101020794, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 660668, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657517, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648364, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 868589, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 742235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702233, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704025, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659801, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 827629, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 843183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027383, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 878775, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 877125, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101001684, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 948996, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 756653, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 711906, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015" +},{ + "projectID": 639123, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 694181, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 702478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 644164, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 829535, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703934, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 848339, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 757320, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 897507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 852909, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 862283, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 752405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742009, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 646717, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 796762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793423, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101033408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725686, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 654908, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653391, + "title": "Future alternative fuel powertrains and components for heavy duty vehicles", + "topic": "GV-7-2014" +},{ + "projectID": 957400, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 890562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734039, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 844313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 700108, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 859910, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 695013, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 948185, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 894270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101001071, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 969953, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101028059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715060, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 639170, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 738231, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 795961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 756407, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101018894, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 714049, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 863914, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 704473, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702524, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 948449, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 678202, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 648711, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101018825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661247, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101015145, + "title": "Innovation in guided transport", + "topic": "S2R-OC-IPX-01-2020" +},{ + "projectID": 703972, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 674843, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 839376, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 871631, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 848926, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769599, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 637993, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 765376, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 701745, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101032880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659545, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648551, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 894254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 721223, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 749359, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 837794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001078, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 703227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 717191, + "title": "Catalytic control of fuel properties for large VHBR engines", + "topic": "JTI-CS2-2015-CFP02-ENG-03-03" +},{ + "projectID": 101028354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 759743, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 948521, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 687198, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 966758, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 749207, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 786912, + "title": "Broadband communication systems", + "topic": "SEC-04-DRS-2017" +},{ + "projectID": 704710, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647755, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 637313, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 758480, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 818823, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 660398, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 841154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 766835, + "title": "Presidency Conference ‘Expanding Excellent Science for the Benefit of Society’", + "topic": "H2020-IBA-SC6-Expand-2016" +},{ + "projectID": 727504, + "title": "Utilisation of captured CO2 as feedstock for the process industry", + "topic": "LCE-25-2016" +},{ + "projectID": 747209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 695437, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 748563, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690882, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 792674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771586, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 805344, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 864991, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101024710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 776473, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 740311, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 746993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101026335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 696898, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 678941, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 645655, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 680777, + "title": "New adaptable catalytic reactor methodologies for Process Intensification", + "topic": "SPIRE-05-2015" +},{ + "projectID": 101017928, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 713743, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 799943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 745083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023416, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 680414, + "title": "New adaptable catalytic reactor methodologies for Process Intensification", + "topic": "SPIRE-05-2015" +},{ + "projectID": 783287, + "title": "Knowledge Transfer Network (KTN)", + "topic": "SESAR-ER3-01-2016" +},{ + "projectID": 725915, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 656998, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742004, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 662159, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 646659, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 803426, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 692640, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 724037, + "title": "System and cost optimised hybridisation of road vehicles", + "topic": "GV-03-2016" +},{ + "projectID": 658190, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 753228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 882699, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705723, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 792562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862509, + "title": "Materials for non-battery based energy storage (RIA)", + "topic": "LC-NMBP-29-2019" +},{ + "projectID": 851441, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 674806, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 861887, + "title": "Workplace innovation uptake by SMEs", + "topic": "INNOSUP-04-2019" +},{ + "projectID": 703125, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772228, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101022733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773264, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 757111, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101028262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758495, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 702385, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 654198, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 702149, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025659, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703861, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885396, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 794000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725765, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 851504, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 749549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658917, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678883, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 892003, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 740288, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864849, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 765497, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 865590, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 654916, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714068, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 692068, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 677715, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 860816, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101020243, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 836841, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647784, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 693023, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 666068, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 749830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692876, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 949914, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101000936, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 846040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 749667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864145, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 677623, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 752418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 949180, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 660753, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 637733, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101002428, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 682436, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 724519, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 763672, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 724362, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 801774, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 649082, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647849, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 834816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794852, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882357, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101018672, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 790012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 814548, + "title": "Catalytic transformation of hydrocarbons (RIA)", + "topic": "CE-NMBP-24-2018" +},{ + "projectID": 741251, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 764203, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 714620, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 862616, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 642671, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 702177, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706238, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 951943, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 742684, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 716314, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 885632, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 682414, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101022449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 847548, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 679734, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 704228, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 637579, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 709054, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 640283, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 895412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 860954, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 665807, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 845268, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716878, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 692657, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101022335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 683150, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 826092, + "title": "Support to further development of international cooperation in digital transformation of health and care", + "topic": "SC1-HCC-03-2018" +},{ + "projectID": 796020, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703864, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772510, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 842291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838997, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864628, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 833361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703060, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 857253, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 797335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722628, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 946184, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 746011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683076, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 772110, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 747125, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648787, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 677749, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 841990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661805, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657765, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 839042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 807091, + "title": "Eco Design Transverse Activity", + "topic": "CS2-GAM-2018-ECO" +},{ + "projectID": 886519, + "title": "Development of a methodology (test, measurement, analysis) to characterize the behaviour of composite structures under dynamic loading", + "topic": "JTI-CS2-2019-CFP10-AIR-01-42" +},{ + "projectID": 831985, + "title": "Full Scale Innovative Integrated Tooling for Composite Material Wing Box [SAT]", + "topic": "JTI-CS2-2018-CfP08-AIR-02-60" +},{ + "projectID": 752716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 777810, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 896848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 813869, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 686636, + "title": "Eco Design for Airframe - Re-use of Thermoplastics Composites", + "topic": "JTI-CS2-2014-CFP01-AIR-01-07" +},{ + "projectID": 860942, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 690802, + "title": "International cooperation in aeronautics with Japan", + "topic": "MG-1.8-2015" +},{ + "projectID": 864453, + "title": "Shielding/High-lift composite thermoplastic flap manufacturing, tool design and manufacturing & process definition", + "topic": "JTI-CS2-2018-CfP09-LPA-01-66" +},{ + "projectID": 101007429, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 886810, + "title": "Development of short fibre reinforced thermoplastic airframe clips and brackets using factory waste", + "topic": "JTI-CS2-2019-CfP10-LPA-02-31" +},{ + "projectID": 892661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 873123, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 772873, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 666425, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 859957, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 705529, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 952960, + "title": "Materials for off shore energy (IA)", + "topic": "LC-NMBP-31-2020" +},{ + "projectID": 683732, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 649200, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 865113, + "title": "Biphasic Heat Transport Integration for Efficient Heat Exchange within Composite materials Nacelle", + "topic": "JTI-CS2-2018-CFP09-AIR-02-69" +},{ + "projectID": 705365, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660960, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 642890, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 696471, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 755609, + "title": "Developing innovative joining concepts and their manufacturing methodologies", + "topic": "JTI-CS2-2016-CFP04-AIR-02-33" +},{ + "projectID": 101027191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 876897, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 760884, + "title": "High-performance materials for optimizing carbon dioxide capture", + "topic": "NMBP-20-2017" +},{ + "projectID": 785433, + "title": "Innovative solutions for metallic ribs or fittings introduced in a composite box to optimally deal with thermo-mechanical effects", + "topic": "JTI-CS2-2017-CFP06-AIR-01-27" +},{ + "projectID": 778339, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 678565, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 888396, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 958192, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 785839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702731, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 722626, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 886549, + "title": "Fiber reinforced thermoplastics manufacturing for stiffened, complex, double curved structures", + "topic": "JTI-CS2-2019-CfP10-LPA-01-81" +},{ + "projectID": 673817, + "title": "SME Instrument", + "topic": "Space-SME-2014-2" +},{ + "projectID": 778553, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101027516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725165, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 688612, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 852587, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 706788, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 721455, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 636860, + "title": "Manufacturing processes for complex structures and geometries with efficient use of material", + "topic": "FoF-02-2014" +},{ + "projectID": 886376, + "title": "Application of graphene based materials in aeronautical structures for de-icing, lightning strike protection, fire barrier and water absorption prevention purposes", + "topic": "JTI-CS2-2019-CFP10-AIR-02-78" +},{ + "projectID": 101007011, + "title": "Advanced light materials and their production processes for automotive applications", + "topic": "LC-GV-06-2020" +},{ + "projectID": 665674, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 673917, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 833707, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 754890, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 947166, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818808, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 797295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 734156, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 814581, + "title": "Open Innovation Test Beds for Lightweight, nano-enabled multifunctional composite materials and components (IA)", + "topic": "DT-NMBP-01-2018" +},{ + "projectID": 814552, + "title": "Open Innovation Test Beds for Lightweight, nano-enabled multifunctional composite materials and components (IA)", + "topic": "DT-NMBP-01-2018" +},{ + "projectID": 812837, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 716935, + "title": "Complex (composite) part Ultrasonic inspection facilitated by man-robot collaboration", + "topic": "JTI-CS2-2015-CFP02-AIR-01-13" +},{ + "projectID": 101029471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734641, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 672389, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 842606, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 778068, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 717164, + "title": "Integrated airborne antenna for satellite communications in wing – fuselage airframe fairing", + "topic": "JTI-CS2-2015-CFP02-AIR-02-10" +},{ + "projectID": 754748, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 794354, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703020, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 796401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 717915, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 693670, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 743831, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101019693, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101003375, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 101018674, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 966842, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 864713, + "title": "Development and application of an innovative methodology devoted for high temperature characterization of high efficient composite structures", + "topic": "JTI-CS2-2018-CFP09-AIR-02-70" +},{ + "projectID": 828012, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831948, + "title": "Design, development and flight qualification of a supercritical composite shaft drive line for tiltrotor main drive system", + "topic": "JTI-CS2-2018-CfP08-FRC-01-20" +},{ + "projectID": 663477, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 691916, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 101021759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 727583, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 101004172, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 807660, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 821019, + "title": "Composite process modelling and net-shape, complex geometry RTM tool design", + "topic": "JTI-CS2-2017-CfP07-ENG-01-27" +},{ + "projectID": 864726, + "title": "Design, manufacture and deliver a high performance, low cost, low weight Nacelle Structure for Next Generation TiltRotor (NGCTR) - Technology Demonstrator (TD)", + "topic": "JTI-CS2-2018-CFP09-FRC-01-26" +},{ + "projectID": 774686, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 763257, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 666221, + "title": "Post-lithium ion batteries for electric automotive applications", + "topic": "NMP-17-2014" +},{ + "projectID": 101009642, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 830468, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 686135, + "title": "Integration of novel nano materials into existing production lines", + "topic": "NMP-02-2015" +},{ + "projectID": 672267, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 815278, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 831796, + "title": "Micro mechanical characteristics of a PEKK Co-consolidation / welded joint for use in thermoplastic fuselages", + "topic": "JTI-CS2-2018-CfP08-LPA-02-25" +},{ + "projectID": 771834, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 689007, + "title": "International cooperation in aeronautics with Canada", + "topic": "MG-1.9-2015" +},{ + "projectID": 690638, + "title": "International cooperation in aeronautics with China", + "topic": "MG-1.10-2015" +},{ + "projectID": 745556, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 830508, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837771, + "title": "Valorise sugars from the cellulosic and/or hemicellulosic fractions of lignocellulosic biomass", + "topic": "BBI.2018.SO2.D3" +},{ + "projectID": 760940, + "title": "Architectured /Advanced material concepts for intelligent bulk material structures", + "topic": "NMBP-04-2017" +},{ + "projectID": 785457, + "title": "Lay-up tools for net-shape AFP-manufacturing of geometrically complex helicopter sideshell sandwich-panels", + "topic": "JTI-CS2-2017-CFP06-AIR-02-42" +},{ + "projectID": 101006952, + "title": "Next generation multifunctional and intelligent airframe and engine parts, with emphasis on manufacturing, maintenance and recycling", + "topic": "MG-3-5-2020" +},{ + "projectID": 650485, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 667501, + "title": "Fibres and polymers from lignin", + "topic": "BBI.VC2.R4" +},{ + "projectID": 896410, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755068, + "title": "Development of methods for deriving optimized shapes of morphing structures considering both aerodynamic performances and specific mechanical morphing boundary conditions", + "topic": "JTI-CS2-2016-CFP04-AIR-02-28" +},{ + "projectID": 869703, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 886567, + "title": "Apply microorganisms and/or enzymes to resolve end-of-life issues of plastics", + "topic": "BBI-2019-SO2-R3" +},{ + "projectID": 101008183, + "title": "Thermoplastic fuselage repair process integrated on manufacturing line", + "topic": "JTI-CS2-2020-CfP11-LPA-02-37" +},{ + "projectID": 651315, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 886554, + "title": "Advanced solutions for 2030+ UHBR Core Noise reduction", + "topic": "JTI-CS2-2019-CfP10-LPA-01-75" +},{ + "projectID": 753186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642557, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 719057, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 813202, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 754580, + "title": "Quilted Stratum Processes (QSP) for low cost and eco thermoplastic manufacturing of complex composite parts", + "topic": "JTI-CS2-2016-CFP04-AIR-02-37" +},{ + "projectID": 686946, + "title": "CROR Engine debris Impact. Shielding design, manufacturing, simulation and Impact test preparation", + "topic": "JTI-CS2-2014-CFP01-AIR-01-03" +},{ + "projectID": 686374, + "title": "New enhanced acoustic damping composite material", + "topic": "JTI-CS2-2014-CFP01-AIR-02-04" +},{ + "projectID": 723425, + "title": "Highly efficient insulation materials with improved properties", + "topic": "EEB-01-2016" +},{ + "projectID": 817238, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639495, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 732303, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 661199, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 771146, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 761495, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 700863, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832269, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785472, + "title": "SmartContainer", + "topic": "JTI-CS2-2017-CFP06-LPA-02-16" +},{ + "projectID": 882789, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 714177, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 637394, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 755744, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 720858, + "title": "Advanced materials enabling the integration of storage technologies in the electricity grid", + "topic": "NMBP-18-2016" +},{ + "projectID": 831858, + "title": "Sizing for recycled carbon fibres to optimise adhesion in organic/inorganic composite materials", + "topic": "JTI-CS2-2018-CfP08-AIR-03-03" +},{ + "projectID": 645993, + "title": "Open access pilot lines for cost-effective nanocomposites", + "topic": "NMP-01-2014" +},{ + "projectID": 636903, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 862942, + "title": "Sustainable wood value chains", + "topic": "LC-RUR-11-2019-2020" +},{ + "projectID": 755616, + "title": "Development of prototype system based on Laser UT technology for high speed contactless no-couplant inspection of hybrid and thick composite structures", + "topic": "JTI-CS2-2016-CFP04-AIR-02-36" +},{ + "projectID": 648666, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 782128, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 861850, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 744311, + "title": "Biopolymers with advanced functionalities for high performance applications", + "topic": "BBI-2016-R07" +},{ + "projectID": 799773, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 804106, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 771688, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 680263, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101028628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885323, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 952390, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 810182, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 726381, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 786475, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 658224, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101002715, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 795732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655474, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 821096, + "title": "New technologies for the enhanced recovery of by-products", + "topic": "CE-SC5-06-2018" +},{ + "projectID": 843117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716136, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101035716, + "title": "Ensuring greater synergies by testing new collaboration mechanisms between the EIT Innovation Communities and the Enhanced EIC Pilot in support of the the Green Deal and other Union policy priorities - Climate", + "topic": "IBA-EIC-CLIMATE-2020" +},{ + "projectID": 787149, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 730285, + "title": "Water in the context of the circular economy", + "topic": "CIRC-02-2016-2017" +},{ + "projectID": 833032, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003575, + "title": "ERA-NET Cofund action on raw materials", + "topic": "SC5-36-2020" +},{ + "projectID": 673330, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 742183, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 877373, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827643, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821033, + "title": "Demonstrating systemic urban development for circular and regenerative cities", + "topic": "CE-SC5-03-2018" +},{ + "projectID": 671852, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 753633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 873005, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 761219, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 650913, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 721385, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 823943, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 729624, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 782743, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 680009, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 774657, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 827608, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645767, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 101003884, + "title": "Scientific support to designing mitigation pathways and policies", + "topic": "LC-CLA-10-2020" +},{ + "projectID": 769274, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 841676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646307, + "title": "Open access pilot lines for cost-effective nanocomposites", + "topic": "NMP-01-2014" +},{ + "projectID": 862597, + "title": "Smart materials, systems and structures for energy harvesting (RIA)", + "topic": "LC-NMBP-32-2019" +},{ + "projectID": 674624, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 881343, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 735552, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 787025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656721, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 742829, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101002176, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 865131, + "title": "Innovative tooling, end-effector development and industrialisation for welding of thermoplastic components", + "topic": "JTI-CS2-2018-CFP09-LPA-02-28" +},{ + "projectID": 846338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 808454, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 720744, + "title": "Innovative cellulose-based composite packaging solutions", + "topic": "BBI.VC2.D2-2015" +},{ + "projectID": 101030693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101035810, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 723994, + "title": "Facilitating public procurement of innovative sustainable transport and mobility solutions in urban areas", + "topic": "MG-4.4-2016" +},{ + "projectID": 101035793, + "title": "Conference on Marine Resources under the Portuguese Presidency", + "topic": "SC2-IBA-ALLATLANTIC-2020" +},{ + "projectID": 683373, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 971442, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 891276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734578, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 831900, + "title": "Enhanced Low Cost Complex Composite Structures", + "topic": "JTI-CS2-2018-CfP08-AIR-02-63" +},{ + "projectID": 686611, + "title": "Rapid Assembly Of Bracket For Structure-System Integration", + "topic": "JTI-CS2-2014-CFP01-LPA-02-03" +},{ + "projectID": 101003622, + "title": "Sustainable management in extractive industries", + "topic": "SC5-26-2020" +},{ + "projectID": 739727, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 826774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828217, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101037509, + "title": "Innovative, systemic zero-pollution solutions to protect health, environment and natural resources from persistent and mobile chemicals", + "topic": "LC-GD-8-1-2020" +},{ + "projectID": 101009316, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 101007166, + "title": "Development of eco-design guidelines for FCH products", + "topic": "FCH-04-3-2020" +},{ + "projectID": 780121, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 655265, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 820687, + "title": "Efficient recycling processes for plastic containing materials (IA)", + "topic": "CE-SPIRE-10-2018" +},{ + "projectID": 685213, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 664513, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 639760, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 788222, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 717070, + "title": "Process development for composite frames manufacturing with high production rate and low cost", + "topic": "JTI-CS2-2015-CFP02-AIR-02-16" +},{ + "projectID": 755497, + "title": "Very high brightness & compact full color display for next generation eyes-out cockpit products", + "topic": "JTI-CS2-2016-CFP04-SYS-01-03" +},{ + "projectID": 723268, + "title": "Industrial technologies for the valorisation of European bio-resources into high added value process streams", + "topic": "SPIRE-03-2016" +},{ + "projectID": 877040, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674192, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 827152, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858389, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821114, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2018-2019-2020" +},{ + "projectID": 711540, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 748568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657726, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714691, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 891623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787670, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 736299, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101002306, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 637556, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 681895, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 706008, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 730308, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 958243, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 101007281, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 859885, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 836019, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862849, + "title": "Closing nutrient cycles", + "topic": "CE-RUR-08-2018-2019-2020" +},{ + "projectID": 768735, + "title": "Integration of energy harvesting at building and district level", + "topic": "EEB-07-2017" +},{ + "projectID": 730305, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 101011053, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 957138, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 824952, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889868, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761072, + "title": "Improved material durability in buildings and infrastructures, including offshore", + "topic": "NMBP-06-2017" +},{ + "projectID": 880227, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776751, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 753636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 946255, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946611, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837733, + "title": "Conversion of captured CO2", + "topic": "CE-SC3-NZE-2-2018" +},{ + "projectID": 781259, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 681559, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101025317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 863799, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101032167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 842543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864256, + "title": "Advanced High Bypass Ratio Low-Speed Composite Fan Design and Validation", + "topic": "JTI-CS2-2018-CFP09-THT-05" +},{ + "projectID": 807740, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 705842, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023190, + "title": "Develop bio-based solutions to recycle composites", + "topic": "BBI-2020-SO2-R3" +},{ + "projectID": 648283, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 834531, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 887192, + "title": "Innovative miniaturized sensing device for large wave length spectrum reception capability as a tool for quality control and aircraft maintenance", + "topic": "JTI-CS2-2019-CfP10-LPA-02-32" +},{ + "projectID": 749850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 651611, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 768692, + "title": "Pilot lines based on more flexible and down-scaled high performance processing", + "topic": "SPIRE-09-2017" +},{ + "projectID": 101007494, + "title": "Innovative disbond arrest features for long thermoplastic welded joints", + "topic": "JTI-CS2-2020-CfP11-LPA-02-35" +},{ + "projectID": 663055, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 754581, + "title": "Development of a Multi-scale method to predict large aircraft component failure taking into consideration Manufacturing Uncertainties for Predictive Virtual Simulations", + "topic": "JTI-CS2-2016-CFP04-LPA-02-15" +},{ + "projectID": 101006860, + "title": "Improved Production and Maintenance Processes in Shipyards", + "topic": "MG-3-7-2020" +},{ + "projectID": 804065, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 785463, + "title": "Development of innovative and optimized stiffeners run-out for overall panel weight saving of composite wing", + "topic": "JTI-CS2-2017-CFP06-AIR-01-26" +},{ + "projectID": 790305, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 843349, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 843161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 805469, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 967872, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 693361, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 689279, + "title": "Materials under extreme conditions", + "topic": "SC5-12b-2015" +},{ + "projectID": 645987, + "title": "Materials solutions for use in the creative industry sector", + "topic": "NMP-18-2014" +},{ + "projectID": 101033472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 887002, + "title": "Development of a methodology to optimize a wing composite panel with respect to tyre damage certification requirement", + "topic": "JTI-CS2-2019-CFP10-AIR-01-44" +},{ + "projectID": 895931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 869180, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 947723, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 679451, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 711109, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 876313, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 947230, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761959, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 713843, + "title": "Safe and connected automation in road transport", + "topic": "MG-3.6b-2015" +},{ + "projectID": 641794, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 872233, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 945906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 852281, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 797034, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 825132, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 670986, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 754760, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 714737, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 798926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704544, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799606, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725762, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 639253, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 725183, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 773801, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101003750, + "title": "Raw materials innovation actions: exploration and Earth observation in support of sustainable mining", + "topic": "SC5-10-2019-2020" +},{ + "projectID": 697111, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101000617, + "title": "Reducing food losses and waste along the agri-food value chain", + "topic": "RUR-07-2020" +},{ + "projectID": 815889, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101035794, + "title": "Presidency event (conference) in Portugal: EuroNanoForum 2021", + "topic": "IBA-LEIT-NMBP-Portugal-Presidency-2020" +},{ + "projectID": 855148, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821242, + "title": "Strengthening international cooperation on sustainable urbanisation: nature-based solutions for restoration and rehabilitation of urban ecosystems", + "topic": "SC5-13-2018-2019" +},{ + "projectID": 101033691, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 855540, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003532, + "title": "Improving the sorting, separation and recycling of composite and multi-layer materials", + "topic": "CE-SC5-24-2020" +},{ + "projectID": 712710, + "title": "H2020-Adhoc-2014-20", + "topic": "Environment" +},{ + "projectID": 955286, + "title": "Decarbonising long distance shipping", + "topic": "LC-MG-1-13-2020" +},{ + "projectID": 101036074, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 718789, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 778229, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 862156, + "title": "Open Innovation Test Beds for nano-enabled surfaces and membranes (IA)", + "topic": "DT-NMBP-03-2019" +},{ + "projectID": 852990, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101029302, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820723, + "title": "Processing of material feedstock using non-conventional energy sources (IA)", + "topic": "CE-SPIRE-02-2018" +},{ + "projectID": 816968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101017643, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 752384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867489, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 865431, + "title": "Spring-in prediction capability for large integral wing structure [SAT]", + "topic": "JTI-CS2-2018-CFP09-AIR-02-68" +},{ + "projectID": 763990, + "title": "New knowledge and technologies", + "topic": "LCE-06-2017" +},{ + "projectID": 867598, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 862453, + "title": "Photocatalytic synthesis (RIA)", + "topic": "CE-NMBP-25-2019" +},{ + "projectID": 856225, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644625, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 801371, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 734205, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 873076, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767839, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 644971, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 687961, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 889079, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793882, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 673151, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 797176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003866, + "title": "Scientific support to designing mitigation pathways and policies", + "topic": "LC-CLA-10-2020" +},{ + "projectID": 821265, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 817383, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789532, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101008237, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 686813, + "title": "Blade FEM impact simulations and sample manufacturing for CROR Aircraft", + "topic": "JTI-CS2-2014-CFP01-AIR-01-05" +},{ + "projectID": 957504, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 842319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 717172, + "title": "Database of dynamic material properties for selected materials commonly used in aircraft industry.", + "topic": "JTI-CS2-2015-CFP02-SYS-03-03" +},{ + "projectID": 821399, + "title": "Advanced manufacturing for MW range power dense electrical machines for aerospace applications", + "topic": "JTI-CS2-2017-CfP07-LPA-01-41" +},{ + "projectID": 101027930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844746, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 866754, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703435, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 734300, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 653884, + "title": "Privacy", + "topic": "DS-01-2014" +},{ + "projectID": 646737, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101001752, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 724394, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 759630, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 768737, + "title": "Integration of unconventional technologies for multi-material processing into manufacturing systems", + "topic": "FOF-07-2017" +},{ + "projectID": 821300, + "title": "Hybrid Aircraft Seating Manufacturing & Testing", + "topic": "JTI-CS2-2017-CfP07-AIR-01-36" +},{ + "projectID": 952983, + "title": "Upcycling Bio Plastics of food and drinks packaging (RIA)", + "topic": "CE-BIOTEC-09-2020" +},{ + "projectID": 761964, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101010259, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 953206, + "title": "Open Innovation Test Beds for nano-enabled bio-based materials (IA)", + "topic": "DT-NMBP-04-2020" +},{ + "projectID": 735542, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 844114, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 831955, + "title": "Innovative Composite Material Qualification Methodologies", + "topic": "JTI-CS2-2018-CfP08-SYS-02-52" +},{ + "projectID": 727202, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 731096, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 763748, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 101003591, + "title": "Raw materials innovation actions: exploration and Earth observation in support of sustainable mining", + "topic": "SC5-10-2019-2020" +},{ + "projectID": 814485, + "title": "Open Innovation Test Beds for Lightweight, nano-enabled multifunctional composite materials and components (IA)", + "topic": "DT-NMBP-01-2018" +},{ + "projectID": 798651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 767901, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 653729, + "title": "Ethical/Societal Dimension Topic 2: Enhancing cooperation between law enforcement agencies and citizens - Community policing", + "topic": "FCT-14-2014" +},{ + "projectID": 892479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 768774, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 683083, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 797044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 814247, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 949626, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 821366, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 787054, + "title": "Human Factor for the Prevention, Investigation, and Mitigation of criminal and terrorist acts", + "topic": "SEC-07-FCT-2016-2017" +},{ + "projectID": 720739, + "title": "Innovative cellulose-based composite packaging solutions", + "topic": "BBI.VC2.D2-2015" +},{ + "projectID": 688519, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 683875, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 800881, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 968384, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673690, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 778847, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 855679, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815904, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003893, + "title": "Develop and pilot circular systems in plastics, textiles and furniture sectors", + "topic": "CE-SC5-28-2020" +},{ + "projectID": 791509, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 672922, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 952972, + "title": "Open Innovation Test Beds for nano-enabled bio-based materials (IA)", + "topic": "DT-NMBP-04-2020" +},{ + "projectID": 684677, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 892499, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 873149, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101026017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839088, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 795974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101036155, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 831730, + "title": "Presidency event (conference): 'The sustainable transition to a low carbon, climate-resilient circular economy: Creating the knowledge base' – Helsinki, September 2019", + "topic": "IBA-SC5-PRESIDENCY-2018" +},{ + "projectID": 858805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 722096, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 772299, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 645691, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 837249, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673581, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 876170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887073, + "title": "Scrapping of carbon reinforced thermoplastic materials", + "topic": "JTI-CS2-2019-CFP10-AIR-03-09" +},{ + "projectID": 665238, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 820331, + "title": "Independent testing programme on premature obsolescence", + "topic": "CE-SC5-02-2018" +},{ + "projectID": 785859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 735318, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 841770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825075, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 740846, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 816933, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728086, + "title": "Intelligent solutions and tools in forest production systems, fostering a sustainable supply of quality wood for the growing bioeconomy", + "topic": "BB-04-2016" +},{ + "projectID": 101037071, + "title": "European capacities for citizen deliberation and participation for the Green Deal", + "topic": "LC-GD-10-1-2020" +},{ + "projectID": 101036010, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 737981, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 788001, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101031384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 681491, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 658270, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 859179, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855329, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821276, + "title": "Light weight, certifiable airframe structures through combination with high performance materials", + "topic": "JTI-CS2-2017-CfP07-AIR-02-51" +},{ + "projectID": 717188, + "title": "Prototype Manufacturing Tooling for Single Parts Manufacturing of the Rotorless tail for LifeRCraft.", + "topic": "JTI-CS2-2015-CFP02-AIR-02-13" +},{ + "projectID": 738220, + "title": "Prototype Tooling for subcomponents manufacturing for wing winglet", + "topic": "JTI-CS2-2016-CFP03-AIR-02-18" +},{ + "projectID": 726558, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 869268, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2018-2019-2020" +},{ + "projectID": 101031402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 878137, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680951, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 647719, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 706461, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 713677, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 771193, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 802636, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 641942, + "title": "Moving towards a circular economy through industrial symbiosis", + "topic": "WASTE-1-2014" +},{ + "projectID": 724114, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 892540, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 673383, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 696337, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 768755, + "title": "Assessment of standardisation needs and ways to overcome regulatory bottlenecks in the process industry", + "topic": "SPIRE-12-2017" +},{ + "projectID": 101030255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033844, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 814671, + "title": "Catalytic transformation of hydrocarbons (RIA)", + "topic": "CE-NMBP-24-2018" +},{ + "projectID": 674857, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 854524, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 721909, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 780435, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 960123, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 777780, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 721451, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101035652, + "title": "Ensuring greater synergies by testing new collaboration mechanisms between the EIT Innovation Communities and the Enhanced EIC Pilot in support of the the Green Deal and other Union policy priorities - Energy", + "topic": "IBA-EIC-ENERGY-2020" +},{ + "projectID": 854977, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768780, + "title": "New technologies and life cycle management for reconfigurable and reusable customised products", + "topic": "FOF-10-2017" +},{ + "projectID": 814543, + "title": "Smart plastic materials with intrinsic recycling properties by design (RIA)", + "topic": "CE-NMBP-26-2018" +},{ + "projectID": 955986, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 745214, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101036079, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 823916, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 887913, + "title": "Apply microorganisms and/or enzymes to resolve end-of-life issues of plastics", + "topic": "BBI-2019-SO2-R3" +},{ + "projectID": 748600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 762300, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 958373, + "title": "Energy-efficient manufacturing system management (IA)", + "topic": "DT-FOF-09-2020" +},{ + "projectID": 789454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 759552, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 840557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 689157, + "title": "Eco-innovative solutions", + "topic": "WASTE-6a-2015" +},{ + "projectID": 878883, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 818088, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 101007584, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 774233, + "title": "Resource-efficient urban agriculture for multiple benefits – contribution to the EU-China Urbanisation Partnership", + "topic": "SFS-48-2017" +},{ + "projectID": 101007430, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 730053, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 776541, + "title": "Water in the context of the circular economy", + "topic": "CIRC-02-2016-2017" +},{ + "projectID": 855467, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728498, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 674455, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 741105, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 776680, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 768573, + "title": "Pilot lines based on more flexible and down-scaled high performance processing", + "topic": "SPIRE-09-2017" +},{ + "projectID": 880053, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 816987, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717718, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 967978, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036640, + "title": "Behavioural, social and cultural change for the Green Deal", + "topic": "LC-GD-10-2-2020" +},{ + "projectID": 718316, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 841964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 892571, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 883212, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 966743, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101000559, + "title": "Innovative textiles – reinventing fashion", + "topic": "CE-FNR-14-2020" +},{ + "projectID": 741668, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101010454, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 958274, + "title": "Preserving fresh water: recycling industrial waters industry", + "topic": "CE-SPIRE-07-2020" +},{ + "projectID": 671632, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 101032845, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 959275, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 825213, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 869884, + "title": "Refurbishment and re-manufacturing of large industrial equipment (IA)", + "topic": "DT-FOF-06-2019" +},{ + "projectID": 101006888, + "title": "Advanced light materials and their production processes for automotive applications", + "topic": "LC-GV-06-2020" +},{ + "projectID": 641861, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 674568, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 946584, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 765395, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101036337, + "title": "Restoring biodiversity and ecosystem services", + "topic": "LC-GD-7-1-2020" +},{ + "projectID": 644856, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 773863, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 867382, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 792855, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 688541, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 635266, + "title": "Tackling urban road congestion", + "topic": "MG-5.3-2014" +},{ + "projectID": 101000728, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 888972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 821303, + "title": "Valuing nature: mainstreaming natural capital in policies and in business decision-making", + "topic": "SC5-18-2018" +},{ + "projectID": 823463, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 641933, + "title": "A systems approach for the reduction, recycling and reuse of food waste", + "topic": "WASTE-2-2014" +},{ + "projectID": 676070, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 808649, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 730316, + "title": "Macro-economic and societal benefits from creating new markets in a circular economy", + "topic": "SC5-25-2016" +},{ + "projectID": 871386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769052, + "title": "Supporting 'smart electric mobility' in cities", + "topic": "MG-4.2-2017" +},{ + "projectID": 827521, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823948, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 789453, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 672287, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 674973, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 824980, + "title": "Photonics Manufacturing Pilot Lines for Photonic Components and Devices", + "topic": "ICT-03-2018-2019" +},{ + "projectID": 776962, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 777845, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 727832, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 967134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 869318, + "title": "Building a water-smart economy and society", + "topic": "CE-SC5-04-2019" +},{ + "projectID": 807611, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 894071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 663768, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 673663, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 808468, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 752420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 795793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 846255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894986, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787073, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101030066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002784, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 845976, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 672814, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 644386, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 958365, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 817214, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010323, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 709606, + "title": "From lignocellulosic feedstock to advanced bio-based chemicals, materials or ethanol", + "topic": "BBI.VC1.F1" +},{ + "projectID": 707017, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 763562, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 883679, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 951389, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 956384, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 831321, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 868234, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 869952, + "title": "Open Innovation for collaborative production engineering (IA)", + "topic": "DT-FOF-05-2019" +},{ + "projectID": 101023205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101006799, + "title": "Development of next generation renewable fuel technologies from CO2 and renewable energy (Power and Energy to Renewable Fuels)", + "topic": "LC-SC3-RES-26-2020" +},{ + "projectID": 860221, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 880032, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952957, + "title": "Increase performance and reliability of photovoltaic plants", + "topic": "LC-SC3-RES-33-2020" +},{ + "projectID": 101008701, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 663433, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 101036428, + "title": "Demonstration of systemic solutions for the territorial deployment of the circular economy", + "topic": "LC-GD-3-2-2020" +},{ + "projectID": 828096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010175, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 816636, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007085, + "title": "Next generation electrified vehicles for urban and suburban use", + "topic": "LC-GV-08-2020" +},{ + "projectID": 710543, + "title": "Responsible Research and Innovation in industrial context", + "topic": "GARRI-2-2015" +},{ + "projectID": 653371, + "title": "Conflict prevention and peace building topic 1: Enhancing the civilian conflict prevention and peace building capabilities of the EU", + "topic": "BES-12-2014" +},{ + "projectID": 869496, + "title": "Building a water-smart economy and society", + "topic": "CE-SC5-04-2019" +},{ + "projectID": 730471, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 652601, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2014" +},{ + "projectID": 820895, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 821136, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 687895, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 642451, + "title": "Preparing and promoting innovation procurement for resource efficiency", + "topic": "WASTE-5-2014" +},{ + "projectID": 673683, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 957051, + "title": "National roundtables to implement the Smart Finance for Smart Buildings initiative", + "topic": "LC-SC3-B4E-12-2020" +},{ + "projectID": 709590, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 704870, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 787937, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 898186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101022144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 752305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656493, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884524, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 646747, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 768101, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 680604, + "title": "Re-use and remanufacturing technologies and equipment for sustainable product lifecycle management", + "topic": "FoF-13-2015" +},{ + "projectID": 883264, + "title": "Converting Sunlight to storable chemical energy", + "topic": "LC-SC3-RES-29-2019" +},{ + "projectID": 884444, + "title": "Converting Sunlight to storable chemical energy", + "topic": "LC-SC3-RES-29-2019" +},{ + "projectID": 964972, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 724102, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 774265, + "title": "Innovative solutions for sustainable food packaging", + "topic": "SFS-35-2017" +},{ + "projectID": 867076, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101036838, + "title": "Demonstration of systemic solutions for the territorial deployment of the circular economy", + "topic": "LC-GD-3-2-2020" +},{ + "projectID": 835460, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 860720, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 847143, + "title": "Integrated home renovation services", + "topic": "LC-SC3-EE-2-2018-2019" +},{ + "projectID": 648991, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 892071, + "title": "Decarbonisation of the EU building stock: innovative approaches and affordable solutions changing the market for buildings renovation", + "topic": "LC-SC3-EE-1-2018-2019-2020" +},{ + "projectID": 694588, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 762458, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101031622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649730, + "title": "Development and market roll-out of innovative energy services and financial schemes for sustainable energy", + "topic": "EE-21-2014" +},{ + "projectID": 875944, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821427, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 876682, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 818470, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 710968, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 101024184, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 731884, + "title": "Large Scale Pilots", + "topic": "IoT-01-2016" +},{ + "projectID": 954442, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 776503, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 644461, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 101018010, + "title": "International Resource Panel (IRP) Secretariat", + "topic": "IBA-SC5-IRP-2020" +},{ + "projectID": 730264, + "title": "Supporting international cooperation activities on water", + "topic": "SC5-11-2016" +},{ + "projectID": 870597, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 863000, + "title": "High-quality organic fertilisers from biogas digestate", + "topic": "CE-SFS-39-2019" +},{ + "projectID": 870292, + "title": "Microorganism communities for plastics bio-degradation (RIA)", + "topic": "CE-BIOTEC-05-2019" +},{ + "projectID": 782205, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 843441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101036138, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 714080, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 827469, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725525, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 867457, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 847396, + "title": "Presidency event (conference) in Finland: Sustainable Smart Manufacturing", + "topic": "IBA-LEIT-NMBP-Finnish-Presidency-2018" +},{ + "projectID": 964007, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 720897, + "title": "Pilot lines for manufacturing of materials with customized thermal/electrical conductivity properties", + "topic": "PILOTS-01-2016" +},{ + "projectID": 690970, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 738874, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 841437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 698298, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 869301, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 884948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771295, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 693398, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693561, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 872404, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658056, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658832, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661048, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 736445, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 664339, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 660322, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001591, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 791349, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101031533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641972, + "title": "Moving towards a circular economy through industrial symbiosis", + "topic": "WASTE-1-2014" +},{ + "projectID": 643442, + "title": "Advancing active and healthy ageing with ICT: ICT solutions for independent living with cognitive impairment", + "topic": "PHC-20-2014" +},{ + "projectID": 891636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 642514, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 730238, + "title": "ERA-NET Cofund on Raw materials", + "topic": "SC5-17-2016" +},{ + "projectID": 798983, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 652692, + "title": "Bridging research and innovation efforts for a sustainable bioeconomy", + "topic": "ISIB-08b-2014" +},{ + "projectID": 101006675, + "title": "Advanced light materials and their production processes for automotive applications", + "topic": "LC-GV-06-2020" +},{ + "projectID": 690047, + "title": "Eco-innovative strategies", + "topic": "WASTE-6b-2015" +},{ + "projectID": 653321, + "title": "Risk management and assurance models", + "topic": "DS-06-2014" +},{ + "projectID": 958284, + "title": "Smart Operation of Proactive Residential Buildings (IA)", + "topic": "LC-EEB-07-2020" +},{ + "projectID": 101038060, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 956454, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101003491, + "title": "Understanding the transition to a circular economy and its implications on the environment, economy and society", + "topic": "CE-SC5-25-2020" +},{ + "projectID": 735158, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 893311, + "title": "Socio-economic research conceptualising and modelling energy efficiency and energy demand", + "topic": "LC-SC3-EE-14-2018-2019-2020" +},{ + "projectID": 886620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956439, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101003758, + "title": "ERA-NET Cofund action on enhancing urban transformation capacities", + "topic": "SC5-35-2020" +},{ + "projectID": 820477, + "title": "Methods to remove hazardous substances and contaminants from secondary raw materials", + "topic": "CE-SC5-01-2018" +},{ + "projectID": 793021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 965173, + "title": "Micro- and nano-plastics in our environment: Understanding exposures and impacts on human health", + "topic": "SC1-BHC-36-2020" +},{ + "projectID": 808456, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 961989, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854343, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717514, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 720491, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 826161, + "title": "Waste-stream based power balancing plants with high efficiency, high flexibility and power-to-X capability", + "topic": "FCH-02-8-2018" +},{ + "projectID": 963950, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 663649, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 861960, + "title": "Materials for non-battery based energy storage (RIA)", + "topic": "LC-NMBP-29-2019" +},{ + "projectID": 775210, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 821201, + "title": "Demonstrating systemic urban development for circular and regenerative cities", + "topic": "CE-SC5-03-2018" +},{ + "projectID": 732506, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 743553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 771052, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101033561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 852640, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101032589, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025710, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948708, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 694159, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 742401, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 657247, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 747170, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101004491, + "title": "Enhancing access and uptake of education to reverse inequalities", + "topic": "TRANSFORMATIONS-22-2020" +},{ + "projectID": 789865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 792144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707559, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 656891, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 725268, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 890414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694910, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 677423, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 768919, + "title": "Carbon dioxide utilisation to produce added value chemicals", + "topic": "SPIRE-08-2017" +},{ + "projectID": 897014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 818941, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 657883, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 730224, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 818260, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 660929, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007669, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 816665, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833337, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 815128, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 646769, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 664719, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 658843, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 820859, + "title": "Raw materials policy support actions for the circular economy", + "topic": "CE-SC5-08-2018-2019-2020" +},{ + "projectID": 660533, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 734561, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 897555, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 947731, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 762852, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 846498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 958174, + "title": "ERA-NET on materials, supporting the circular economy and Sustainable Development Goals", + "topic": "CE-NMBP-41-2020" +},{ + "projectID": 760792, + "title": "Business models and industrial strategies supporting novel supply chains for innovative product-services", + "topic": "NMBP-22-2017" +},{ + "projectID": 892824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003785, + "title": "Raw materials innovation actions: exploration and Earth observation in support of sustainable mining", + "topic": "SC5-10-2019-2020" +},{ + "projectID": 950598, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 862915, + "title": "Multi-use of the marine space, offshore and near-shore: pilot demonstrators", + "topic": "BG-05-2019" +},{ + "projectID": 834355, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827957, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739507, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 862910, + "title": "Sustainable solutions for bio-based plastics on land and sea", + "topic": "CE-BG-06-2019" +},{ + "projectID": 733676, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 886416, + "title": "End of Life (EoL) for biomaterials", + "topic": "JTI-CS2-2019-CFP10-AIR-03-07" +},{ + "projectID": 688995, + "title": "Eco-innovative solutions", + "topic": "WASTE-6a-2015" +},{ + "projectID": 780989, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 674200, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014" +},{ + "projectID": 101036063, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 101000136, + "title": "Socio-economic research: non-energy impacts and behavioural insights on energy efficiency interventions", + "topic": "LC-SC3-EC-4-2020" +},{ + "projectID": 952886, + "title": "Open Innovation Test Beds for materials for building envelopes (IA)", + "topic": "DT-NMBP-05-2020" +},{ + "projectID": 713794, + "title": "Electric vehicles’ enhanced performance and integration into the transport system and the grid", + "topic": "GV-8-2015" +},{ + "projectID": 763298, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 864266, + "title": "European Islands Facility - Unlock financing for energy transitions and supporting islands to develop investment concepts", + "topic": "LC-SC3-ES-8-2019" +},{ + "projectID": 968363, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036723, + "title": "Building and renovating in an energy and resource efficient way", + "topic": "LC-GD-4-1-2020" +},{ + "projectID": 845102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003527, + "title": "Strengthening international collaboration: enhanced natural treatment solutions for water security and ecological quality in cities", + "topic": "SC5-27-2020" +},{ + "projectID": 809308, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 691717, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2015" +},{ + "projectID": 862413, + "title": "Real-time nano-characterisation technologies (RIA)", + "topic": "DT-NMBP-08-2019" +},{ + "projectID": 101006744, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 694424, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 869072, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 792943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 835080, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 793471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 827525, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732019, + "title": "Boost synergies between artists, creative people and technologists", + "topic": "ICT-36-2016" +},{ + "projectID": 741860, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 853195, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 692685, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 838108, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 964264, + "title": "ERA-NET: Sustained collaboration of national and regional programmes in cancer research", + "topic": "SC1-HCO-14-2020" +},{ + "projectID": 802582, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 839526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899895, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 792649, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 659489, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 951801, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 702405, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101029012, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724987, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 814910, + "title": "Harnessing and understanding the impacts of changes in urban mobility on policy making by city-led innovation for sustainable urban mobility", + "topic": "LC-MG-1-3-2018" +},{ + "projectID": 101016941, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 949397, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 883922, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 863927, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 870157, + "title": "New developments in plus energy houses (IA)", + "topic": "LC-EEB-03-2019" +},{ + "projectID": 826093, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 875392, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 864242, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 768634, + "title": "Novel design and predictive maintenance technologies for increased operating life of production systems", + "topic": "FOF-09-2017" +},{ + "projectID": 773909, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 780792, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 871755, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 824389, + "title": "Pan-European Forum for R&I on Smart Grids, Flexibility and Local Energy Networks", + "topic": "LC-SC3-ES-7-2018" +},{ + "projectID": 749299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742720, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 657314, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 966627, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 682549, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101031883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721532, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 844217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658825, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681582, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 956314, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 658833, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 748804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694610, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 881805, + "title": "Condition-based and preventive maintenance for locomotive bogie", + "topic": "S2R-OC-IP5-01-2019" +},{ + "projectID": 101031499, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832467, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 675417, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101020190, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 776402, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 653590, + "title": "Law enforcement capabilities topic 3: Pan European platform for serious gaming and training", + "topic": "FCT-07-2014" +},{ + "projectID": 636520, + "title": "Smart Rail Services", + "topic": "MG-2.2-2014" +},{ + "projectID": 636148, + "title": "Towards seamless mobility addressing fragmentation in ITS deployment in Europe", + "topic": "MG-7.2a-2014" +},{ + "projectID": 101020374, + "title": "Strategic pre-commercial procurements of innovative, advanced systems to support security", + "topic": "SU-GM02-2018-2020" +},{ + "projectID": 723989, + "title": "Assessing future requirements for skills and jobs across transport modes and systems", + "topic": "MG-8.3-2016" +},{ + "projectID": 765441, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 746309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 692908, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 734825, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 752824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 681311, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 796287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 800498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 765608, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 721906, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101026581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795189, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 658980, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 633379, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 888650, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 854194, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 781012, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 749889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 822404, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 754412, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 727745, + "title": "EU-US interoperability roadmap", + "topic": "SC1-HCO-14-2016" +},{ + "projectID": 693989, + "title": "Lifelong learning for young adults: better policies for growth and inclusion in Europe", + "topic": "YOUNG-3-2015" +},{ + "projectID": 815499, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 814244, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101004112, + "title": "Big data technologies and Artificial Intelligence for Copernicus", + "topic": "DT-SPACE-25-EO-2020" +},{ + "projectID": 649447, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 678049, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 687605, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 686066, + "title": "Design and demonstration of a laminar nacelle concept for business jet", + "topic": "JTI-CS2-2014-CFP01-AIR-01-06" +},{ + "projectID": 722295, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 649351, + "title": "The European growth agenda", + "topic": "EURO-2-2014" +},{ + "projectID": 712110, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 651970, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 674683, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 835892, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 896095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727552, + "title": "Healthcare Workforce IT skills", + "topic": "SC1-HCO-13-2016" +},{ + "projectID": 850622, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101030373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 721975, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 751931, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656723, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 813871, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 658405, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 827627, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 642937, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 806948, + "title": "European Screening Centre: unique library for attractive biology (ESCulab)", + "topic": "IMI2-2017-12-07" +},{ + "projectID": 949804, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 874451, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 798846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 642434, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 765657, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 836024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 898512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 677289, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 837718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823939, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101000893, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 705715, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101005077, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 656820, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 851478, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 659046, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659399, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 704912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715052, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 753137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647687, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 766058, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 675527, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 657725, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 954992, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 820187, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 635973, + "title": "Analysis of funding schemes for transport infrastructure", + "topic": "MG-9.3-2014" +},{ + "projectID": 747446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 739782, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 649875, + "title": "Socioeconomic research on energy efficiency", + "topic": "EE-12-2014" +},{ + "projectID": 642893, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 949995, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 653413, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 735485, + "title": "Establish testing protocols for electrolysers performing electricity grid services", + "topic": "FCH-02-1-2016" +},{ + "projectID": 101006900, + "title": "The effects of automation on the transport labour force, future working conditions and skills requirements", + "topic": "MG-2-14-2020" +},{ + "projectID": 662506, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 770469, + "title": "Policy-development in the age of big data: data-driven policy-making, policy-modelling and policy-implementation", + "topic": "CO-CREATION-06-2017" +},{ + "projectID": 645963, + "title": "Local / small-scale storage", + "topic": "LCE-08-2014" +},{ + "projectID": 829943, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 847523, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 719483, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 754702, + "title": "Promoting mental health and well-being in the young", + "topic": "SC1-PM-07-2017" +},{ + "projectID": 727465, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 698327, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 689031, + "title": "Demonstrating and testing innovative solutions for cleaner and better urban transport and mobility", + "topic": "MG-5.5a-2015" +},{ + "projectID": 852577, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 697611, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 719035, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 669026, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 101018420, + "title": "Integrated local energy systems (Energy islands): International cooperation with India", + "topic": "LC-SC3-ES-13-2020" +},{ + "projectID": 785558, + "title": "Innovative pump architecture for cooling electrical machine", + "topic": "JTI-CS2-2017-CFP06-SYS-02-31" +},{ + "projectID": 684723, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015" +},{ + "projectID": 101009255, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 768905, + "title": "Pilot lines based on more flexible and down-scaled high performance processing", + "topic": "SPIRE-09-2017" +},{ + "projectID": 717618, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 862272, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 781172, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 770064, + "title": "The Port of the future", + "topic": "MG-7-3-2017" +},{ + "projectID": 648055, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 847413, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 876945, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948432, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 876034, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769926, + "title": "Demonstration (pilots) for integration of electrified L-category vehicles in the urban transport system", + "topic": "GV-10-2017" +},{ + "projectID": 782942, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 947373, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731249, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 762938, + "title": "Presidency Conference on Strengthening Euro-Mediterranean cooperation through Research and Innovation", + "topic": "IBA-SC6-EUROMED-2016" +},{ + "projectID": 743923, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 649395, + "title": "Early job insecurity and labour market exclusion", + "topic": "YOUNG-1-2014" +},{ + "projectID": 886716, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776978, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 730459, + "title": "Pathways towards the decarbonisation and resilience of the European economy in the timeframe 2030-2050 and beyond", + "topic": "SC5-06-2016-2017" +},{ + "projectID": 652164, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 693221, + "title": "The young as a driver of social change", + "topic": "YOUNG-4-2015" +},{ + "projectID": 705353, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 675378, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 659950, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101006798, + "title": "Improved Production and Maintenance Processes in Shipyards", + "topic": "MG-3-7-2020" +},{ + "projectID": 753994, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 879943, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 857989, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 775333, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 700057, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647049, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 674829, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 680515, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 745344, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 681390, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 805007, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 957739, + "title": "TSO – DSO – Consumer: Large-scale demonstrations of innovative grid services through demand response, storage and small-scale (RES) generation", + "topic": "LC-SC3-ES-5-2018-2020" +},{ + "projectID": 636573, + "title": "Tackling urban road congestion", + "topic": "MG-5.3-2014" +},{ + "projectID": 101031461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 672990, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 653511, + "title": "Electric two-wheelers and new ultra-light vehicle concepts", + "topic": "GV-5-2014" +},{ + "projectID": 956433, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 858355, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816832, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 754895, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 789790, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 827788, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660955, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 817456, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873460, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807806, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 764452, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 101006364, + "title": "Improving impact and broadening stakeholder engagement in support of transport research and innovation", + "topic": "MG-4-10-2020" +},{ + "projectID": 757721, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 727560, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 783176, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 721846, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 657030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 652129, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 842299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018413, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 741467, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 710294, + "title": "EURAXESS outreach to Industry", + "topic": "SEAC-4-2015" +},{ + "projectID": 664408, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 674871, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 841373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705677, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 710603, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101029711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754285, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 894976, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 876868, + "title": "ECSEL-2019-2-RIA", + "topic": "ECSEL-2019-2-RIA" +},{ + "projectID": 812391, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101026259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 872734, + "title": "Big data solutions for energy", + "topic": "DT-ICT-11-2019" +},{ + "projectID": 674813, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 873576, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822778, + "title": "Inclusive and sustainable growth through cultural and creative industries and the arts", + "topic": "TRANSFORMATIONS-06-2018" +},{ + "projectID": 739496, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 780265, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 101028525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 783247, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 658297, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 713654, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 733360, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 690713, + "title": "Demonstrating and testing innovative solutions for cleaner and better urban transport and mobility", + "topic": "MG-5.5a-2015" +},{ + "projectID": 781885, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 876748, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007513, + "title": "Decentralised HVDC power conversion module for innovative optimised aircraft electrical network distribution", + "topic": "JTI-CS2-2020-CFP11-SYS-02-63" +},{ + "projectID": 651612, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 765116, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 635893, + "title": "MSCA", + "topic": "MSCA" +},{ + "projectID": 671379, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 798421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 650256, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 698795, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 875052, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 847624, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 712949, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 818992, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 731665, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 650082, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 658244, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 647152, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 781780, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 723917, + "title": "Novel hybrid approaches for additive and subtractive manufacturing machines", + "topic": "FOF-01-2016" +},{ + "projectID": 890434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 827805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711326, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 861867, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 729855, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 668023, + "title": "Establishing effectiveness of health care interventions in the paediatric population", + "topic": "PHC-18-2015" +},{ + "projectID": 645763, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 689041, + "title": "Public procurement of innovative eHealth services", + "topic": "PHC-29-2015" +},{ + "projectID": 708305, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 854352, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739677, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 741373, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 656323, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 675891, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 675318, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 793678, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 699641, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 869821, + "title": "Integrated storage systems for residential buildings (IA)", + "topic": "LC-EEB-05-2019-20" +},{ + "projectID": 887349, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729733, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 730280, + "title": "Cultural heritage as a driver for sustainable growth", + "topic": "SC5-21-2016-2017" +},{ + "projectID": 781145, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101034307, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 896341, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 774519, + "title": "High value-added specialised vessel concepts enabling more efficient servicing of emerging coastal and offshore activities", + "topic": "BG-02-2016-2017" +},{ + "projectID": 763313, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 861712, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 797131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789695, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 739615, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 649489, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 729793, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 752410, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 713640, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 687941, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 831264, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 758190, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101030643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 857631, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 743356, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 946304, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675602, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 711425, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 685909, + "title": "Novel nanomatrices and nanocapsules", + "topic": "NMP-06-2015" +},{ + "projectID": 824349, + "title": "Demographic change and participation of women in transport", + "topic": "MG-4-3-2018" +},{ + "projectID": 639403, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 875406, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 639633, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 826429, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 713645, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 101016583, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 947806, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 866394, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101018130, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 636882, + "title": "Support for the enhancement of the impact of FoF PPP projects", + "topic": "FoF-07-2014" +},{ + "projectID": 829561, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 717406, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 889669, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 764805, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 754923, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 744350, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 822842, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683876, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 646667, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 745531, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 820636, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 719084, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 649378, + "title": "The European growth agenda", + "topic": "EURO-2-2014" +},{ + "projectID": 749313, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 674189, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 665667, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 672558, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 713730, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 791019, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 693559, + "title": "Innovation ecosystems of digital cultural assets", + "topic": "REFLECTIVE-6-2015" +},{ + "projectID": 787011, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 838816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 711369, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 818706, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 690874, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 866929, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 869529, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 821918, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 693167, + "title": "Lifelong learning for young adults: better policies for growth and inclusion in Europe", + "topic": "YOUNG-3-2015" +},{ + "projectID": 753438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007766, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 739773, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 882276, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 894751, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645909, + "title": "Platform for ICT for Learning and Inclusion", + "topic": "INSO-6-2014" +},{ + "projectID": 779158, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 763168, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 729057, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 808006, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 864319, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 674298, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 640211, + "title": "Improving skills and knowledge base in European Aviation", + "topic": "MG-1.6-2014" +},{ + "projectID": 641660, + "title": "Global waste dimension", + "topic": "WASTE-4b-2014" +},{ + "projectID": 736169, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 636778, + "title": "Developing smart factories that are attractive to workers", + "topic": "FoF-04-2014" +},{ + "projectID": 644090, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 790563, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 747433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 831362, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 823219, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737479, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 716388, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 730540, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 775400, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 674491, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 649497, + "title": "The European growth agenda", + "topic": "EURO-2-2014" +},{ + "projectID": 101016508, + "title": "Artificial Intelligence on demand platform", + "topic": "ICT-49-2020" +},{ + "projectID": 762003, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 654139, + "title": "e-Infrastructure policy development and international cooperation", + "topic": "INFRASUPP-7-2014" +},{ + "projectID": 955924, + "title": "13. Innovative Enterprise Week 2020", + "topic": "IBA-ARF-InnoWeek-2020" +},{ + "projectID": 717644, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 101026526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645323, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 797461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 650473, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 831314, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 650176, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101027745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 651475, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 818859, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 666148, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 101029311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 859983, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 777023, + "title": "ATS Level SAT 2035 forecast", + "topic": "JTI-CS2-2016-CFP05-TE2-01-05" +},{ + "projectID": 649565, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 702528, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 658988, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816728, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 727362, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 715950, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 878984, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 732947, + "title": "Net Innovation Initiative", + "topic": "ICT-12-2016" +},{ + "projectID": 672123, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 863397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945322, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 742185, + "title": "Presidency conference(s)", + "topic": "IBA-MSCA-Presidency-2017" +},{ + "projectID": 893008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 831359, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 643346, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 833955, + "title": "Cybersecurity in the Electrical Power and Energy System (EPES): an armour against cyber and privacy attacks and data breaches", + "topic": "SU-DS04-2018-2020" +},{ + "projectID": 855448, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864301, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644272, + "title": "Development of novel materials and systems for OLED lighting", + "topic": "ICT-29-2014" +},{ + "projectID": 725961, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 731220, + "title": "Support to R&I strategy for smart grid and storage", + "topic": "LCE-03-2016" +},{ + "projectID": 861242, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 672729, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 777455, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 724188, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 657652, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 740105, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 705686, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 639652, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 882234, + "title": "Support to the Finnish Presidency Conference on the European Strategic Technology Plan (SET-Plan) 2019", + "topic": "IBA-ENERGY-SETPLAN-2020" +},{ + "projectID": 827697, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 637178, + "title": "Support for the enhancement of the impact of FoF PPP projects", + "topic": "FoF-07-2014" +},{ + "projectID": 833577, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 849834, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 712055, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 873591, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827164, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822390, + "title": "Supply and demand-oriented economic policies to boost robust growth in Europe – Addressing the social and economic challenges in Europe", + "topic": "TRANSFORMATIONS-14-2018" +},{ + "projectID": 888180, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771976, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 646080, + "title": "Presidency events", + "topic": "NMP-38-2014" +},{ + "projectID": 646463, + "title": "Local / small-scale storage", + "topic": "LCE-08-2014" +},{ + "projectID": 101031029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 837186, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 749068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 672530, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 882230, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744854, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 688015, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2015" +},{ + "projectID": 643552, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 750969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874867, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 946364, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 828708, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963865, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 838259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 969065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649160, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 951475, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 736310, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 636335, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 817156, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790552, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 848146, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 946899, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726413, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 969104, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889555, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002587, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 697269, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 828523, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886005, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681686, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 793530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101026196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 831101, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 807509, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 775714, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 656522, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 777362, + "title": "ADDRESSING THE CLINICAL BURDEN OF CLOSTRIDIUM DIFFICILE INFECTION (CDI): EVALUATION OF THE BURDEN, CURRENT PRACTICES AND SET-UP OF A EUROPEAN RESEARCH PLATFORM (PART OF THE IMI NEW DRUGS FOR BAD BUGS (ND4BB) PROGRAMME)", + "topic": "IMI2-2016-09-01" +},{ + "projectID": 835433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 708193, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 771945, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 795754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 965226, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 711269, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 639445, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 835911, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 643576, + "title": "Foresight for health policy development and regulation", + "topic": "PHC-31-2014" +},{ + "projectID": 665607, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 839553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661395, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 877651, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945425, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 643638, + "title": "ERA-NET: Aligning national/regional translational cancer research programmes and activities", + "topic": "HCO-08-2014" +},{ + "projectID": 754803, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 855362, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767720, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 832504, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867495, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874205, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 839960, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 772994, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101025118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 654691, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659666, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682935, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 847824, + "title": "Implementation research for maternal and child health", + "topic": "SC1-BHC-19-2019" +},{ + "projectID": 825114, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 825510, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 701096, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 761945, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 743863, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 863357, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656775, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 712123, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 637069, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 702642, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 795154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 644329, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 666094, + "title": "Health", + "topic": "Health" +},{ + "projectID": 751903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864499, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 861862, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 676828, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 660152, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639275, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101009187, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 101024833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 711083, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 101029339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888174, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733203, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 786833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864957, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 807781, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101018317, + "title": "Mobilisation of Research Infrastructures for the COVID-19 Public Health Emergency", + "topic": "IBA-INFRA-CORONA-2020" +},{ + "projectID": 718986, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 740394, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 855607, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864012, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 793569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 802305, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 899999, + "title": "Implementation research for scaling up and transfer of innovative solutions involving digital tools for people-centred care", + "topic": "SC1-DTH-13-2020" +},{ + "projectID": 894675, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 743730, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101024324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 965328, + "title": "New approaches for clinical management and prevention of resistant bacterial infections in high prevalence settings", + "topic": "SC1-BHC-34-2020" +},{ + "projectID": 840110, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 833594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 849231, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681572, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 864616, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 799829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 730731, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 744038, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 886422, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647888, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 666328, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 101029802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 867513, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684368, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 828092, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639383, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 696579, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 827080, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649021, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101027744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 780427, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 947611, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 660200, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 672444, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101019157, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 758713, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 968411, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861122, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 673753, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 833076, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 846856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949582, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 968565, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952417, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101017113, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 884328, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 837180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 961844, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 962483, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 848294, + "title": "Towards risk-based screening strategies for non-communicable diseases", + "topic": "SC1-BHC-30-2019" +},{ + "projectID": 663039, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 643588, + "title": "Advancing active and healthy ageing with ICT: ICT solutions for independent living with cognitive impairment", + "topic": "PHC-20-2014" +},{ + "projectID": 885877, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666540, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 947081, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 830471, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813343, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 786880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 755369, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 887598, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 963862, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 851485, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 733379, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 769135, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 761491, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 659937, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 843107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 755179, + "title": "New therapies for rare diseases", + "topic": "SC1-PM-08-2017" +},{ + "projectID": 798038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 965351, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 689260, + "title": "Digital representation of health data to improve disease diagnosis and treatment", + "topic": "PHC-30-2015" +},{ + "projectID": 846519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 713734, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 848056, + "title": "Demonstration pilots for implementation of personalised medicine in healthcare", + "topic": "SC1-BHC-25-2019" +},{ + "projectID": 101024697, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894227, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654816, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101025074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 719554, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 643491, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 657875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 825747, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 878324, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651675, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 827272, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645699, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 828120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827291, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 824061, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 643478, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 658632, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 826930, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 716323, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 652871, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 952491, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 640004, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 895134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708651, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 809046, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 754995, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 661617, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 651203, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 825832, + "title": "Translational collaborative cancer research between Europe and the Community of Latin American and Caribbean States (CELAC)", + "topic": "SC1-BHC-18-2018" +},{ + "projectID": 753100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101033565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835216, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688592, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 712116, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 842619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 875784, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828984, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 762833, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 967968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735523, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 760342, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 731931, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 805308, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 773701, + "title": "Research and approaches for emerging diseases and pests in plants and terrestrial livestock", + "topic": "SFS-10-2017" +},{ + "projectID": 952376, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 807876, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 876061, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 844956, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 883877, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 875658, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 827173, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 961787, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882261, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 759921, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 945096, + "title": "New interventions for Non-Communicable Diseases", + "topic": "SC1-BHC-08-2020" +},{ + "projectID": 963988, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 847465, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 659437, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101015930, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 101005142, + "title": "Development of therapeutics and diagnostics combatting coronavirus infections", + "topic": "IMI2-2020-21-01" +},{ + "projectID": 748836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895151, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 676421, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 744157, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 891251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 867746, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813228, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 854709, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775519, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 946589, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666308, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 832847, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 842893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 872488, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 816850, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663197, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 809158, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 815529, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101032602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 733006, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 101028929, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 961141, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705140, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 735764, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 825750, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 957095, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 824464, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957090, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 651665, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 634753, + "title": "Evaluating existing screening and prevention programmes", + "topic": "PHC-06-2014" +},{ + "projectID": 783818, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 754627, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 754425, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 795051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 780360, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 634270, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 696854, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 729044, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 798032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797855, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034883, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 662486, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 888337, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 874581, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 863492, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101022870, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661512, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 847949, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 687228, + "title": "Self-management of health and disease and patient empowerment supported by ICT", + "topic": "PHC-27-2015" +},{ + "projectID": 703226, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 957522, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 793592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 873553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 945175, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 755320, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 959886, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690984, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 656657, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714993, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 777373, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 779689, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 694262, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 816773, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841875, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945602, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 882904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031208, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 865356, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 766082, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 864815, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101007922, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 898829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 751977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 685066, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 769267, + "title": "The Port of the future", + "topic": "MG-7-3-2017" +},{ + "projectID": 676846, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101005711, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 841164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722166, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 772867, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 780026, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 712667, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 732375, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 663547, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 859711, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 831223, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 743816, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 894257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 877662, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 769998, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 673770, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 731391, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 754496, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 950672, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 728679, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 763285, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 763497, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 892894, + "title": "Stimulating demand for sustainable energy skills in the construction sector", + "topic": "LC-SC3-EE-3-2019-2020" +},{ + "projectID": 761756, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 741107, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 785523, + "title": "Computing Node for Safety Critical Applications", + "topic": "JTI-CS2-2017-CFP06-SYS-03-09" +},{ + "projectID": 754387, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 753717, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 816305, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 732575, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 864471, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 876252, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741491, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 633398, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 823505, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728462, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 740181, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 813803, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 696618, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 866949, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 764951, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 888282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 870619, + "title": "Enhancing social rights and EU citizenship", + "topic": "GOVERNANCE-04-2019" +},{ + "projectID": 860047, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 716641, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 712284, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 101038070, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 733687, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 815650, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 894971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 873105, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 644367, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 746622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 757395, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 731954, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 649737, + "title": "Construction skills", + "topic": "EE-04-2014" +},{ + "projectID": 705190, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 633216, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 894416, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855968, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714641, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 858358, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 786826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 680969, + "title": "ERA-NET: Cardiovascular disease", + "topic": "HCO-13-2015" +},{ + "projectID": 727114, + "title": "Better integration of evidence on the impact of research and innovation in policy making", + "topic": "CO-CREATION-08-2016-2017" +},{ + "projectID": 724351, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 712921, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 773846, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101001464, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 773639, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 831120, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 674803, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 649189, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 767162, + "title": "Presidency events", + "topic": "NMBP-31-2017" +},{ + "projectID": 893629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 811181, + "title": "Analysing the R&I productivity-inequality nexus", + "topic": "IBA-SC6-Nexus-2017" +},{ + "projectID": 847718, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 801165, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 713639, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 773869, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 739740, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 795132, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681337, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 897030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 804493, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 788361, + "title": "Webs of Innovation Value Chains and Openings for RRI", + "topic": "SwafS-12-2017" +},{ + "projectID": 752053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 676139, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 754340, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 738523, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 855945, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776896, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 677627, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 956127, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 753537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867380, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815666, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850590, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 764632, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 719334, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 950641, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 740276, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 671526, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 790321, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 722937, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 648398, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 756641, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 713600, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 963924, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 758491, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 713679, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 868866, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 767498, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FOF-12-2017" +},{ + "projectID": 673724, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 772753, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 745431, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 679704, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101022491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 662651, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 754946, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 953462, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688503, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 642667, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 739795, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 735394, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 813928, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 739578, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 716485, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 793262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660022, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739844, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 816638, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 692521, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 647870, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 651556, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 841477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 651682, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 873086, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 101024967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835768, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723633, + "title": "Policy support for Industry 2020 in the circular economy", + "topic": "NMBP-36-2016" +},{ + "projectID": 843165, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 662730, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 958450, + "title": "Digital Building Twins (RIA)", + "topic": "LC-EEB-08-2020" +},{ + "projectID": 865127, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 707642, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 893692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 723560, + "title": "Support for the further development of Additive Manufacturing technologies in Europe", + "topic": "FOF-05-2016" +},{ + "projectID": 813986, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 861901, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 759596, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 870898, + "title": "Innovative solutions for inclusive and sustainable urban environments", + "topic": "TRANSFORMATIONS-03-2018-2019" +},{ + "projectID": 765198, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 639583, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 649186, + "title": "The European growth agenda", + "topic": "EURO-2-2014" +},{ + "projectID": 779362, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 661739, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645535, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 738364, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645584, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 745510, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 734271, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 882499, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 684186, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 688228, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 846839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 830085, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657223, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 683931, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 652474, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 890281, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654925, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 876693, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 801215, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 738010, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101023061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 878114, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006544, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 818420, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 724363, + "title": "Dynamics of inequalities across the life-course", + "topic": "REV-INEQUAL-03-2016" +},{ + "projectID": 955446, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 746100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 769177, + "title": "Increasing the take up and scale-up of innovative solutions to achieve sustainable mobility in urban areas", + "topic": "MG-4.1-2017" +},{ + "projectID": 743905, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 652138, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 686533, + "title": "Power Density improvement demonstrated on a certified engine", + "topic": "JTI-CS2-2014-CFP01-ENG-04-01" +},{ + "projectID": 727073, + "title": "Better integration of evidence on the impact of research and innovation in policy making", + "topic": "CO-CREATION-08-2016-2017" +},{ + "projectID": 950189, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 711041, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 740264, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 654852, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 633277, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 747191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 675419, + "title": "New professions and skills for e-infrastructures", + "topic": "INFRASUPP-4-2015" +},{ + "projectID": 684450, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 664544, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 835201, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 771290, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 685844, + "title": "Fibre-based materials for non-clothing applications", + "topic": "NMP-22-2015" +},{ + "projectID": 704759, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801604, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2017" +},{ + "projectID": 711809, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 871457, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 681696, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101018470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 669074, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 956257, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 742991, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734684, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 775000, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 650506, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 887152, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 741500, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 886678, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741087, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 696238, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 959188, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680958, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 873077, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 636942, + "title": "Integrated Process Control", + "topic": "SPIRE-01-2014" +},{ + "projectID": 738076, + "title": "Hybrid Aircraft Seating Requirement Specification and Design - HAIRD", + "topic": "JTI-CS2-2016-CFP03-AIR-01-19" +},{ + "projectID": 715147, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 856057, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954038, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 651921, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 660389, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 957008, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 875255, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 739911, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 731726, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 701991, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 820593, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 665501, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 825159, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 763695, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 101023927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 867199, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 641998, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 101009970, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 876134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701289, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 689242, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 745412, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 868284, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 650515, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 899609, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 789916, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 803074, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 894515, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 722535, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 754688, + "title": "New concepts in patient stratification", + "topic": "SC1-PM-02-2017" +},{ + "projectID": 647426, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 730398, + "title": "Water in the context of the circular economy", + "topic": "CIRC-02-2016-2017" +},{ + "projectID": 776846, + "title": "Raw materials Innovation actions", + "topic": "SC5-14-2016-2017" +},{ + "projectID": 725229, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 668724, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 828432, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837761, + "title": "Develop bio-based packaging products that are biodegradable/ compostable and/or recyclable", + "topic": "BBI.2018.SO3.R10" +},{ + "projectID": 744548, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 748106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 713732, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 665440, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 684143, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 820352, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 883172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854814, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881239, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 872152, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 718212, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 809764, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 867464, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 852791, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 751052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101038095, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 658855, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101025683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 667421, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 660554, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 710163, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 827655, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868454, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 805361, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 660480, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 734959, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 841521, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 877210, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880551, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 637460, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 872053, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101010499, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 655334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 844464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 689229, + "title": "Eco-innovative solutions", + "topic": "WASTE-6a-2015" +},{ + "projectID": 825905, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101029266, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 736272, + "title": "Development of compact reformers for distributed bio-hydrogen production", + "topic": "FCH-02-2-2016" +},{ + "projectID": 874827, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 774980, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 681103, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 689450, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 715127, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 823981, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 777770, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 688338, + "title": "Ensuring sustainable use of agricultural waste, co-products and by-products", + "topic": "WASTE-7-2015" +},{ + "projectID": 851246, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 672550, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 729499, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 702408, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 682881, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 797259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 711328, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015-1" +},{ + "projectID": 794614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 954732, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010276, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 840038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660815, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 656882, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 671459, + "title": "Decentralized hydrogen production from clean CO2-containing biogas", + "topic": "FCH-02.2-2014" +},{ + "projectID": 729171, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 951737, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 742052, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 835677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705256, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101030915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705109, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 708475, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715656, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 863880, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 753067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 810002, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 834402, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 750886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706890, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 677488, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714005, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679278, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 660876, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001069, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 654532, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692951, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 895254, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 948895, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 701676, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 714289, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 747665, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 794305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 826674, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 803277, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 885904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 709147, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 639172, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 657788, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 821488, + "title": "Flexible RTM tool concept for composites with spring back adjustments capabilities", + "topic": "JTI-CS2-2017-CfP07-AIR-01-33" +},{ + "projectID": 745944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 649008, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701796, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657661, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669141, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 958339, + "title": "Energy-efficient manufacturing system management (IA)", + "topic": "DT-FOF-09-2020" +},{ + "projectID": 958357, + "title": "Quality control in smart manufacturing (IA)", + "topic": "DT-FOF-11-2020" +},{ + "projectID": 659454, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 815506, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831882, + "title": "Non destructive testing (NDT) of bonded assemblies", + "topic": "JTI-CS2-2018-CfP08-AIR-03-02" +},{ + "projectID": 827206, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822720, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821192, + "title": "Full scale innovative composite doors, surrounds and sub-structure for Regional Aircraft Fuselage barrel on-ground demonstrators", + "topic": "JTI-CS2-2017-CfP07-REG-01-12" +},{ + "projectID": 781794, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 957391, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 727730, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 957296, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 738517, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 683107, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 721267, + "title": "ERA-NET on manufacturing technologies supporting industry and particularly SMEs in the global competition", + "topic": "NMBP-21-2016" +},{ + "projectID": 779373, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 726001, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 750491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 795782, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758453, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 820405, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 892554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772466, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 757772, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 834878, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 757585, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 703195, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852386, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101020438, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 660941, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658311, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 890884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894590, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707084, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027746, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101027527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001318, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 706809, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832256, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 669758, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 640159, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 898657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716908, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 682726, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 669689, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 747160, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 670193, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 706487, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 787520, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 788482, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 772627, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 669205, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 694561, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101019998, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 701221, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 948240, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 647917, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 718970, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 832514, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762206, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 868937, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 694089, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 658556, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 750905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 758911, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101027183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725366, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 881814, + "title": "Advanced Car body shells for railways and light material and innovative doors and train modularity", + "topic": "S2R-OC-IP1-01-2019" +},{ + "projectID": 681718, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 744952, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 785425, + "title": "High density Electrical connectors", + "topic": "JTI-CS2-2017-CFP06-LPA-03-12" +},{ + "projectID": 868224, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755483, + "title": "Full Fairing for Main Rotor Head or the LifeRCraft demonstrator", + "topic": "JTI-CS2-2016-CFP04-FRC-02-18" +},{ + "projectID": 837384, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736879, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 801267, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101009387, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 861985, + "title": "Materials, manufacturing processes and devices for organic and large area electronics (IA)", + "topic": "DT-NMBP-18-2019" +},{ + "projectID": 719038, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 761883, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 866708, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825453, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 776362, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2017" +},{ + "projectID": 650657, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 816126, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834267, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 678862, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 949431, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101030987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 770929, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101026667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 810504, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 655360, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 743884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838894, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101023088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 796725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 742265, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 681476, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 802986, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 788814, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101018511, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 648017, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 740475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 786564, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 863481, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 832148, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785462, + "title": "Power module", + "topic": "JTI-CS2-2017-CFP06-SYS-02-32" +},{ + "projectID": 865291, + "title": "Multi-Material Thermoplastic high pressure Nitrogen Tanks for Aircrafts", + "topic": "JTI-CS2-2018-CfP09-SYS-01-14" +},{ + "projectID": 743632, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 755550, + "title": "Numerical methodologies and related tools for effect of defect prediction in manufacturing", + "topic": "JTI-CS2-2016-CFP04-AIR-02-31" +},{ + "projectID": 101006854, + "title": "Next generation multifunctional and intelligent airframe and engine parts, with emphasis on manufacturing, maintenance and recycling", + "topic": "MG-3-5-2020" +},{ + "projectID": 875018, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 769178, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 652365, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 831946, + "title": "Full scale innovative pressure bulkheads for Regional Aircraft Fuselage barrel on-ground demonstrators", + "topic": "JTI-CS2-2018-CfP08-REG-01-17" +},{ + "projectID": 696226, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 790100, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 685842, + "title": "Materials for severe operating conditions, including added-value functionalities", + "topic": "NMP-19-2015" +},{ + "projectID": 807201, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 955948, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101006844, + "title": "Advanced light materials and their production processes for automotive applications", + "topic": "LC-GV-06-2020" +},{ + "projectID": 837451, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761122, + "title": "Business models and industrial strategies supporting novel supply chains for innovative product-services", + "topic": "NMBP-22-2017" +},{ + "projectID": 636902, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 831055, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 766649, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 898179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 766900, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 760973, + "title": "Advanced materials and innovative design for improved functionality and aesthetics in high added value consumer goods", + "topic": "NMBP-05-2017" +},{ + "projectID": 788138, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 717238, + "title": "Development of pultrusion manufacturing applications", + "topic": "JTI-CS2-2015-CFP02-LPA-02-10" +},{ + "projectID": 741541, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 746525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647301, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 676895, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 764850, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 702406, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658989, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 787320, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 681208, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 723309, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 658253, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 691209, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 889489, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779736, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 768707, + "title": "In-line measurement and control for micro-/nano-enabled high-volume manufacturing for enhanced reliability", + "topic": "FOF-08-2017" +},{ + "projectID": 855918, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807670, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 730747, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 828008, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899775, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 636951, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 820677, + "title": "Innovative manufacturing of opto-electrical parts (RIA)", + "topic": "DT-FOF-03-2018" +},{ + "projectID": 775888, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 771575, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 835374, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836047, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778867, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 738194, + "title": "Light weight, impact resistant, canopy for fast compound rotorcraft", + "topic": "JTI-CS2-2016-CFP03-FRC-02-09" +},{ + "projectID": 662957, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 766437, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 785550, + "title": "Integration of innovative ice protection systems into structure and their validation", + "topic": "JTI-CS2-2017-CFP06-AIR-02-39" +},{ + "projectID": 672221, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 816252, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761859, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 734599, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 831862, + "title": "Development and execution of new test procedures for thermoplastic aircraft fuselage panels", + "topic": "JTI-CS2-2018-CfP08-LPA-02-23" +},{ + "projectID": 870000, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 841775, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 955901, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 958266, + "title": "Preserving fresh water: recycling industrial waters industry", + "topic": "CE-SPIRE-07-2020" +},{ + "projectID": 821323, + "title": "Full scale Innovative composite windows frames for Regional Aircraft Fuselage barrel on-ground demonstrators", + "topic": "JTI-CS2-2017-CfP07-REG-01-13" +},{ + "projectID": 837213, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870142, + "title": "Handling systems for flexible materials (RIA)", + "topic": "DT-FOF-12-2019" +},{ + "projectID": 651752, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 857775, + "title": "Increase the competitiveness of the EU PV manufacturing industry", + "topic": "LC-SC3-RES-15-2019" +},{ + "projectID": 755561, + "title": "Development of the investment casting process and weldability for high temperature capable superalloys", + "topic": "JTI-CS2-2016-CFP04-ENG-01-12" +},{ + "projectID": 868213, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790440, + "title": "Novel secondary bio-based chemicals without significant fossil-based counterparts but with high application potential", + "topic": "BBI.2017.R7" +},{ + "projectID": 722923, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 686707, + "title": "Development of an all-oxide Ceramic Matrix Composite (CMC) Engine Part", + "topic": "JTI-CS2-2014-CFP01-ENG-02-01" +},{ + "projectID": 818473, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 841534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714577, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 895141, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 718518, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 832814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714309, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 772295, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 701894, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897414, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707364, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 648932, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 703419, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679288, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 659301, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703683, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705278, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702139, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852410, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 838454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 739651, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101028339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101022338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026616, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 823878, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 653943, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 832250, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 670168, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101003436, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 740209, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 800306, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681432, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101019712, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 958264, + "title": "Quality control in smart manufacturing (IA)", + "topic": "DT-FOF-11-2020" +},{ + "projectID": 655161, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 672077, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 957202, + "title": "Self-healing functionalities for long lasting battery cell chemistries", + "topic": "LC-BAT-14-2020" +},{ + "projectID": 836045, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821261, + "title": "Full scale innovative composite frames and shear ties for Regional Aircraft Fuselage barrel on-ground demonstrators.", + "topic": "JTI-CS2-2017-CfP07-REG-01-11" +},{ + "projectID": 828573, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 784909, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 835775, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831987, + "title": "Development and evaluation of a manufacturing process for a lightweight aircraft wheel made of CFRP", + "topic": "JTI-CS2-2018-CfP08-AIR-03-05" +},{ + "projectID": 714605, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 763185, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 762330, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 725528, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 744585, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 807148, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 724177, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 729753, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 836278, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825121, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 690896, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 738661, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 949229, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 954530, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778620, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 862315, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 952903, + "title": "Open Innovation Platform for Materials Modelling (RIA)", + "topic": "DT-NMBP-11-2020" +},{ + "projectID": 776391, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2017" +},{ + "projectID": 787494, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 827215, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775836, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 717145, + "title": "Tool-Part-Interaction simulation process linked to laminate quality", + "topic": "JTI-CS2-2015-CFP02-AIR-01-12" +},{ + "projectID": 861459, + "title": "EU-Taiwan 5G collaboration", + "topic": "ICT-23-2019" +},{ + "projectID": 719009, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 820789, + "title": "Innovative manufacturing of opto-electrical parts (RIA)", + "topic": "DT-FOF-03-2018" +},{ + "projectID": 866958, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 764636, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 637081, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 718016, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 875649, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 754378, + "title": "Support for the EU security of supply of nuclear fuel for research reactors", + "topic": "NFRP-11" +},{ + "projectID": 101000719, + "title": "Innovative textiles – reinventing fashion", + "topic": "CE-FNR-14-2020" +},{ + "projectID": 680820, + "title": "Manufacturing of custom made parts for personalised products", + "topic": "FoF-10-2015" +},{ + "projectID": 960623, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837583, + "title": "Produce biopesticides or bio-based fertilisers as components of sustainable agricultural management plans (1)", + "topic": "BBI.2018.SO3.D4" +},{ + "projectID": 886977, + "title": "Development of a multifunctional system for complex aerostructures assembly, assisted by neural network softwares", + "topic": "JTI-CS2-2019-CFP10-AIR-02-85" +},{ + "projectID": 885550, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717026, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101007322, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 744671, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 767642, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FOF-12-2017" +},{ + "projectID": 814389, + "title": "Materials for future highly performant electrified vehicle batteries (RIA)", + "topic": "LC-NMBP-30-2018" +},{ + "projectID": 738047, + "title": "Eco Design: Composite functionalization: thermal and electrical conductivity", + "topic": "JTI-CS2-2016-CFP03-SYS-02-19" +},{ + "projectID": 723777, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 737671, + "title": "Green Turboprop configuration - Natural Laminar Flow adaptive wing concept aerodynamic experimental validation (WTT2)", + "topic": "JTI-CS2-2016-CFP03-REG-01-02" +},{ + "projectID": 728652, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 783480, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 832672, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870133, + "title": "Handling systems for flexible materials (RIA)", + "topic": "DT-FOF-12-2019" +},{ + "projectID": 958363, + "title": "Quality control in smart manufacturing (IA)", + "topic": "DT-FOF-11-2020" +},{ + "projectID": 645984, + "title": "Networking and sharing of best practises in management of new advanced materials through the eco-design of products, eco-innovation, and product life cycle management", + "topic": "NMP-34-2014" +},{ + "projectID": 849502, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774707, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 821081, + "title": "Optimization of hybrid joining (Refill Friction Stir Spot Welding + adhesive bond) for increasing mechanical properties and corrosion protection of the joints [SAT]", + "topic": "JTI-CS2-2017-CfP07-AIR-02-58" +},{ + "projectID": 855513, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745460, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 737785, + "title": "Manufacturing of prototype elements for hybridation of titanium and epoxy resin - Characterisation of the Titanium TiCP40 - CFRP adhesive joint", + "topic": "JTI-CS2-2016-CFP03-LPA-01-13" +},{ + "projectID": 884067, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829242, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826262, + "title": "Strengthening of the European supply chain for compressed storage systems for transport applications", + "topic": "FCH-01-3-2018" +},{ + "projectID": 760941, + "title": "Pilot Lines for Manufacturing of Nanotextured surfaces with mechanically enhanced properties", + "topic": "PILOTS-03-2017" +},{ + "projectID": 739670, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 831979, + "title": "Cold Spray of metallic coatings on polymer and composite materials [SAT]", + "topic": "JTI-CS2-2018-CfP08-AIR-02-64" +},{ + "projectID": 831838, + "title": "Development of AC cabling technologies for >1kV aerospace applications", + "topic": "JTI-CS2-2018-CfP08-LPA-01-55" +},{ + "projectID": 641702, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 875949, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807366, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 837143, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738174, + "title": "Automation of hand lay-up manufacturing process for composite stiffeners", + "topic": "JTI-CS2-2016-CFP03-AIR-02-23" +},{ + "projectID": 737955, + "title": "Design and realization of equipped engine compartments for a fast compound rotorcraft", + "topic": "JTI-CS2-2016-CFP03-FRC-02-11" +},{ + "projectID": 764553, + "title": "Innovations for energy efficiency and emission control in waterborne transport", + "topic": "MG-2.1-2017" +},{ + "projectID": 744285, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 101007022, + "title": "Next generation multifunctional and intelligent airframe and engine parts, with emphasis on manufacturing, maintenance and recycling", + "topic": "MG-3-5-2020" +},{ + "projectID": 694217, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 832171, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957110, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 643956, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 959259, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785337, + "title": "Manufacturing process for ultimate performance inertial MEMS Accelerometer", + "topic": "JTI-CS2-2017-CFP06-SYS-01-04" +},{ + "projectID": 862136, + "title": "Adopting materials modelling to challenges in manufacturing processes (RIA)", + "topic": "DT-NMBP-10-2019" +},{ + "projectID": 811715, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763072, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 768869, + "title": "Novel design and predictive maintenance technologies for increased operating life of production systems", + "topic": "FOF-09-2017" +},{ + "projectID": 101031676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 761358, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 785534, + "title": "Prototype Tooling for subcomponents manufacturing for fuselage.", + "topic": "JTI-CS2-2017-CFP06-AIR-02-50" +},{ + "projectID": 804519, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 836540, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026292, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 783535, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 768328, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 683531, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 744347, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 720402, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 855757, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948260, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 666278, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 661868, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 792037, + "title": "EGS in different geological conditions", + "topic": "LCE-18-2017" +},{ + "projectID": 685793, + "title": "Low-energy solutions for drinking water production", + "topic": "NMP-24-2015" +},{ + "projectID": 718580, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 774833, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 744159, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 837353, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864008, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 735012, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 637189, + "title": "New technologies for utilization of heat recovery in large industrial systems, considering the whole energy cycle from heat production to transformation, delivery and end use", + "topic": "EE-18-2014" +},{ + "projectID": 691010, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 739280, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101006771, + "title": "Innovative electric network architectures and systems, optimising global energy, electrical power, data and communication for aviation", + "topic": "MG-3-4-2020" +},{ + "projectID": 695614, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 774866, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 842338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 685018, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 755458, + "title": "Divergent Aircraft Configurations", + "topic": "JTI-CS2-2016-CFP04-LPA-01-28" +},{ + "projectID": 647969, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 824254, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 831914, + "title": "Multifunctional Aircraft Power Network with Electrical Switching", + "topic": "JTI-CS2-2018-CfP08-LPA-02-26" +},{ + "projectID": 665318, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 695780, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2015" +},{ + "projectID": 745614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 666624, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 735383, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 897980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 883631, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 731187, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 756346, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 781483, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 871284, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 674311, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 746685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 729758, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 865089, + "title": "Conceptual Design of a 19-passenger Commuter Aircraft with near zero emissions", + "topic": "JTI-CS2-2018-CFP09-THT-03" +},{ + "projectID": 663156, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 876632, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691173, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 696869, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 712022, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 731239, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 698883, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 733815, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 769303, + "title": "Complex and value-added specialised vessels", + "topic": "MG-2.4-2017" +},{ + "projectID": 720838, + "title": "Innovative and sustainable materials solutions for the substitution of critical raw materials in the electric power system", + "topic": "NMBP-03-2016" +},{ + "projectID": 764090, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 764042, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 660404, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 663262, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 807337, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 720527, + "title": "Advanced Materials for Power Electronics based on wide bandgap semiconductor devices technology", + "topic": "NMBP-02-2016" +},{ + "projectID": 703950, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 672521, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 875504, + "title": "Future propulsion and integration: towards a hybrid/electric aircraft (InCo flagship)", + "topic": "LC-MG-1-7-2019" +},{ + "projectID": 717091, + "title": "Smart-grid converter", + "topic": "JTI-CS2-2015-CFP02-REG-01-01" +},{ + "projectID": 726217, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 779020, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 637016, + "title": "Adaptable industrial processes allowing the use of renewables as flexible feedstock for chemical and energy applications", + "topic": "SPIRE-02-2014" +},{ + "projectID": 101003407, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 649956, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2014" +},{ + "projectID": 724424, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 774285, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 785416, + "title": "E2-EM Supervisor and Control Algorithms", + "topic": "JTI-CS2-2017-CFP06-REG-01-10" +},{ + "projectID": 782040, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 731289, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 662816, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 101007237, + "title": "ECSEL-IA", + "topic": "ECSEL-2020-1-IA" +},{ + "projectID": 966786, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 672915, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 650832, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 680599, + "title": "New technologies for utilization of heat recovery in large industrial systems, considering the whole energy cycle from heat production to transformation, delivery and end use", + "topic": "EE-18-2015" +},{ + "projectID": 824386, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 645628, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 655142, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658173, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659123, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705188, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 766742, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 856124, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 758427, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 730390, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 798633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 708685, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 692775, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 753953, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 716315, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 658256, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019003, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 812703, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 752038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 646894, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 892074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 750391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 793424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725523, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 699648, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818949, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 716142, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 747698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 839839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795377, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 832889, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101002471, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 706082, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 837903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 713423, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 957039, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 663680, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 838009, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949278, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 638337, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101025821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 819587, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 850496, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101025041, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 805113, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 796322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 640849, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 892572, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 717356, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 741384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101021358, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 770870, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 657486, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007223, + "title": "Catalyst development for improved economic viability of LOHC technology", + "topic": "FCH-02-1-2020" +},{ + "projectID": 794072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 807723, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101026356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658451, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 797049, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862179, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 802533, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 661880, + "title": "Supporting the implementation of the first-of-the-kind geological repositories", + "topic": "NFRP-06-2014" +},{ + "projectID": 101031568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002811, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 772564, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 951996, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 883987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854630, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899541, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 799664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 793774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677023, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 802736, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 890680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702747, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956351, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 805524, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 804110, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 898422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802428, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 792320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794519, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646908, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 946039, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 765581, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 706463, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793377, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 741623, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 813394, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 956324, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 695618, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 665951, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 715071, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 838799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 636829, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 844355, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637472, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 745806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 881772, + "title": "Future traction power supply for railways and public transport", + "topic": "S2R-OC-IP3-01-2019" +},{ + "projectID": 717976, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101007868, + "title": "Advanced High Power Electrical Systems for High Altitude Operation", + "topic": "JTI-CS2-2020-CFP11-THT-12" +},{ + "projectID": 891101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 850151, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762138, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 878407, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779089, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 744940, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 762013, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 719137, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 706221, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 713864, + "title": "Electric vehicles’ enhanced performance and integration into the transport system and the grid", + "topic": "GV-8-2015" +},{ + "projectID": 774613, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 954045, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673824, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 777996, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 851272, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 886398, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808705, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 815489, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660616, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 829877, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646428, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 719497, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 857832, + "title": "Demonstration of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-17-2019" +},{ + "projectID": 727272, + "title": "Support to the energy stakeholders to contribute to the SET-Plan", + "topic": "LCE-36-2016-2017" +},{ + "projectID": 654113, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 718602, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 759548, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 699111, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 734325, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 808551, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 848757, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673980, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014" +},{ + "projectID": 738064, + "title": "Power Distribution", + "topic": "JTI-CS2-2016-CFP03-FRC-01-09" +},{ + "projectID": 826956, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786766, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 884226, + "title": "Development of solutions based on renewable sources that provide flexibility to the energy system", + "topic": "LC-SC3-RES-16-2019" +},{ + "projectID": 812991, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 731211, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 889687, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728867, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 875715, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 710908, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 718493, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 698455, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 743667, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 956730, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 690111, + "title": "Cloud Computing, including security aspects", + "topic": "EUB-1-2015" +},{ + "projectID": 744058, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101016912, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 874042, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827030, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 777515, + "title": "Smart system energy management solutions and future station solutions", + "topic": "S2R-CFM-IP3-01-2017" +},{ + "projectID": 862973, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 850540, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 946442, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654477, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 731466, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 735503, + "title": "Demonstration of large-scale rapid response electrolysis to provide grid balancing services and to supply hydrogen markets", + "topic": "FCH-02-7-2016" +},{ + "projectID": 101004341, + "title": "Satellite communication technologies", + "topic": "SPACE-29-TEC-2020" +},{ + "projectID": 763919, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 690492, + "title": "Self-management of health and disease and patient empowerment supported by ICT", + "topic": "PHC-27-2015" +},{ + "projectID": 964049, + "title": "Global Alliance for Chronic Diseases (GACD) - Prevention and/or early diagnosis of cancer", + "topic": "SC1-BHC-17-2020" +},{ + "projectID": 643803, + "title": "Support for the European Innovation Partnership on Active and Healthy Ageing", + "topic": "HCO-01-2014" +},{ + "projectID": 643853, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 777096, + "title": "IoT Pilots", + "topic": "EUB-02-2017" +},{ + "projectID": 101036763, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +},{ + "projectID": 723521, + "title": "New ways of supporting development and implementation of neighbourhood-level and urban-district-level transport innovations", + "topic": "MG-4.5-2016" +},{ + "projectID": 101038076, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 675219, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 745186, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 647107, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 786714, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 895355, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885180, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 865657, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 657514, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101003292, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 895473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 863476, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 722614, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 701962, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 812872, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 741002, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 792537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 700140, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 714870, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101019907, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 759063, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 782950, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 636201, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 703860, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 862046, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 846181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 767912, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 648330, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 772676, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 891647, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 823897, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101020016, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 851766, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 639242, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647905, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 948893, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 780284, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 811363, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 777773, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 768631, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FOF-12-2017" +},{ + "projectID": 779967, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 732480, + "title": "Net Innovation Initiative", + "topic": "ICT-12-2016" +},{ + "projectID": 826323, + "title": "Cost-effective novel architectures of interconnects", + "topic": "FCH-02-6-2018" +},{ + "projectID": 826404, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 761809, + "title": "Smart Anything Everywhere Initiative", + "topic": "ICT-04-2017" +},{ + "projectID": 825496, + "title": "5G for cooperative, connected and automated mobility (CCAM)", + "topic": "ICT-18-2018" +},{ + "projectID": 883441, + "title": "Demonstration of novel concepts for the management of pandemic crises", + "topic": "SU-DRS05-2019" +},{ + "projectID": 890437, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 763651, + "title": "Piloting demand-driven collaborative innovation models in Europe", + "topic": "CO-CREATION-03-2016" +},{ + "projectID": 965231, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 723616, + "title": "Machinery and robot systems in dynamic shop floor environments using novel embedded cognitive functions", + "topic": "FOF-02-2016" +},{ + "projectID": 871536, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 635773, + "title": "Reducing impacts and costs of freight and service trips in urban areas", + "topic": "MG-5.2-2014" +},{ + "projectID": 741572, + "title": "Open Schooling and collaboration on science education", + "topic": "SwafS-15-2016" +},{ + "projectID": 101021957, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 952684, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 780732, + "title": "Big Data PPP: Large Scale Pilot actions in sectors best benefitting from data-driven innovation", + "topic": "ICT-15-2016-2017" +},{ + "projectID": 101021857, + "title": "Chemicals: intelligence, detection, forensics", + "topic": "SU-FCT04-2020" +},{ + "projectID": 957406, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 817732, + "title": "Personalized Nutrition", + "topic": "DT-SFS-14-2018" +},{ + "projectID": 731932, + "title": "Big Data PPP: Large Scale Pilot actions in sectors best benefitting from data-driven innovation", + "topic": "ICT-15-2016-2017" +},{ + "projectID": 733286, + "title": "Centres/Networks of European research and innovation", + "topic": "ENG-GLOBALLY-09-2016" +},{ + "projectID": 957246, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 644210, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 737459, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 875329, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 774109, + "title": "Promoting and supporting the eco-intensification of aquaculture production systems: inland (including fresh water), coastal zone, and offshore", + "topic": "SFS-32-2017" +},{ + "projectID": 769141, + "title": "Innovative ICT solutions for future logistics operations", + "topic": "MG-5-2-2017" +},{ + "projectID": 653749, + "title": "Ethical/Societal Dimension Topic 2: Enhancing cooperation between law enforcement agencies and citizens - Community policing", + "topic": "FCT-14-2014" +},{ + "projectID": 710470, + "title": "Evaluation of initiatives to promote gender equality in research policy and research organisations", + "topic": "GERI-3-2015" +},{ + "projectID": 101004480, + "title": "Pilot on using the European cloud infrastructure for public administrations", + "topic": "DT-GOVERNANCE-12-2019-2020" +},{ + "projectID": 870092, + "title": "Pilot lines for modular factories (IA 50%)", + "topic": "DT-FOF-08-2019" +},{ + "projectID": 101037643, + "title": "Transparent & Accessible Seas and Oceans: Towards a Digital Twin of the Ocean", + "topic": "LC-GD-9-3-2020" +},{ + "projectID": 825030, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 101016065, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 101021727, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 101021936, + "title": "Cybersecurity in the Electrical Power and Energy System (EPES): an armour against cyber and privacy attacks and data breaches", + "topic": "SU-DS04-2018-2020" +},{ + "projectID": 787570, + "title": "New constellations of Changing Institutions and Actors", + "topic": "SwafS-05-2017" +},{ + "projectID": 956671, + "title": "Next Generation Internet of Things", + "topic": "ICT-56-2020" +},{ + "projectID": 101021659, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 822064, + "title": "A digital 'plug and produce' online equipment platform for manufacturing (IA)", + "topic": "DT-NMBP-20-2018" +},{ + "projectID": 871403, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 883540, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 956573, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 824509, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 871794, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 780612, + "title": "Tools for smart digital content in the creative industries", + "topic": "ICT-20-2017" +},{ + "projectID": 731125, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 958218, + "title": "Industrialisation of building envelope kits for the renovation market (IA)", + "topic": "LC-EEB-04-2020" +},{ + "projectID": 814888, + "title": "Renewable energy system integrated at the building scale", + "topic": "LC-SC3-RES-4-2018" +},{ + "projectID": 875091, + "title": "Systematic validation of the ability to inject hydrogen at various admixture level into high-pressure gas networks in operational conditions", + "topic": "FCH-02-5-2019" +},{ + "projectID": 869474, + "title": "Building a water-smart economy and society", + "topic": "CE-SC5-04-2019" +},{ + "projectID": 851793, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 787120, + "title": "Risk-based screening at border crossing", + "topic": "SEC-15-BES-2017" +},{ + "projectID": 772160, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 867474, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 657937, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 835466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803614, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 668640, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 649255, + "title": "The European growth agenda", + "topic": "EURO-2-2014" +},{ + "projectID": 101004539, + "title": "Narratives on migration and its impact: past and present", + "topic": "MIGRATION-09-2020" +},{ + "projectID": 716075, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 870831, + "title": "Social and economic effects of migration in Europe and integration policies", + "topic": "MIGRATION-03-2019" +},{ + "projectID": 741532, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 725194, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 839643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101001420, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 647514, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 733337, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 652755, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 890826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004640, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 101026338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716350, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 864347, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 949200, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 642709, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 849189, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101002163, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 714589, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 771635, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 681959, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 839474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 846143, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 843333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659376, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707726, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 890967, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 752884, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660571, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 742974, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 819213, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 657861, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864683, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 788651, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 812764, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 728177, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101023322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694882, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 800925, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 850742, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 657240, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 816736, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 637764, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 775636, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 789827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002720, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 716968, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 846070, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 852216, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 752144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677917, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 770158, + "title": "Participatory approaches and social innovation in culture", + "topic": "CULT-COOP-06-2017" +},{ + "projectID": 723365, + "title": "New ways of supporting development and implementation of neighbourhood-level and urban-district-level transport innovations", + "topic": "MG-4.5-2016" +},{ + "projectID": 658870, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645846, + "title": "Encouraging the research and innovation cooperation between the Union and selected regional partners – proposals targeting Black Sea, Middle East, Africa", + "topic": "INT-02-2014" +},{ + "projectID": 843927, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 798479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 662652, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 870787, + "title": "International protection of refugees in a comparative perspective", + "topic": "MIGRATION-07-2019" +},{ + "projectID": 811469, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 679330, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 792793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898276, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 716686, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 701368, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 780355, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 832845, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 949379, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 841201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101038081, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 715582, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 836194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840989, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707124, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 832777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 780938, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 659541, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 681814, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 797816, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669690, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 790197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 747857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 741538, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101024877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 787248, + "title": "Science4Refugees - Support to highly skilled refugee scientists", + "topic": "SwafS-26-2017" +},{ + "projectID": 759933, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 870743, + "title": "Collaborative approaches to cultural heritage for social cohesion", + "topic": "DT-TRANSFORMATIONS-11-2019" +},{ + "projectID": 747083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754849, + "title": "Promoting mental health and well-being in the young", + "topic": "SC1-PM-07-2017" +},{ + "projectID": 656787, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 822401, + "title": "Addressing the challenge of forced displacement", + "topic": "MIGRATION-08-2018" +},{ + "projectID": 701883, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 740447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 819461, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 649538, + "title": "Societal and political engagement of young people and their perspectives on Europe", + "topic": "YOUNG-5a-2014" +},{ + "projectID": 747075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864818, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 753561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 872209, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 841144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727485, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 752547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101004535, + "title": "Inclusive and innovative practices for the integration of recently arrived migrants in local communities", + "topic": "MIGRATION-04-2020" +},{ + "projectID": 890799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 779255, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 950651, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 740072, + "title": "Developing a comprehensive approach to violent radicalization in the EU from early understanding to improving protection", + "topic": "SEC-06-FCT-2016" +},{ + "projectID": 822590, + "title": "Addressing populism and boosting civic and democratic engagement", + "topic": "GOVERNANCE-03-2018" +},{ + "projectID": 749314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101031711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 638259, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 804031, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 866181, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 722523, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 660281, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833861, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 752021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101022204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657956, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639284, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101027193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 729438, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 658133, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 655316, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 748062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702650, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101031453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896377, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 748155, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702930, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804971, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 704994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842854, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 830204, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 838722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 851121, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 753935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 795568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834455, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 716461, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101024883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 800242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 725269, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 898656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707072, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101022244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870845, + "title": "International protection of refugees in a comparative perspective", + "topic": "MIGRATION-07-2019" +},{ + "projectID": 844360, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695283, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 872299, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 822806, + "title": "Towards forward-looking migration governance: addressing the challenges, assessing capacities and designing future strategies", + "topic": "MIGRATION-02-2018" +},{ + "projectID": 789505, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 770330, + "title": "The significance of cultural and core values for the migration challenge", + "topic": "CULT-COOP-12-2017" +},{ + "projectID": 892032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 822536, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 649456, + "title": "Political challenges for Europe", + "topic": "EURO-4-2014" +},{ + "projectID": 751866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772244, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 822419, + "title": "Past, present and future of differentiation in European governance", + "topic": "GOVERNANCE-02-2018-2019" +},{ + "projectID": 889078, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658742, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 677693, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 842213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 740426, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 760043, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 769819, + "title": "Improving accessibility, inclusive mobility and equity: new tools and business models for public transport in prioritised areas", + "topic": "MG-8-4-2017" +},{ + "projectID": 810356, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 649281, + "title": "Political challenges for Europe", + "topic": "EURO-4-2014" +},{ + "projectID": 798015, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 684020, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 705366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870700, + "title": "Social and economic effects of migration in Europe and integration policies", + "topic": "MIGRATION-03-2019" +},{ + "projectID": 649263, + "title": "Youth mobility: opportunities, impacts, policies", + "topic": "YOUNG-2-2014" +},{ + "projectID": 756672, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 888607, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 652978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 801747, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 822664, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 714463, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 789859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750495, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 714222, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 796197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101004807, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 750443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 769252, + "title": "Improving mutual understanding among Europeans by working through troubled pasts", + "topic": "CULT-COOP-02-2017" +},{ + "projectID": 704479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 844058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 718020, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 765556, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 772544, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101004945, + "title": "Narratives on migration and its impact: past and present", + "topic": "MIGRATION-09-2020" +},{ + "projectID": 101018417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018401, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101026482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 726405, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 656198, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 739636, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 833870, + "title": "Human factors, and social, societal, and organisational aspects of border and external security", + "topic": "SU-BES01-2018-2019-2020" +},{ + "projectID": 101032603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 695107, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 670851, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 890391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817868, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 891762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657741, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 893032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734906, + "title": "SMEs for social innovation – Challenge platform", + "topic": "INNOSUP-04-2016" +},{ + "projectID": 870761, + "title": "International protection of refugees in a comparative perspective", + "topic": "MIGRATION-07-2019" +},{ + "projectID": 834587, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 786148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 857366, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 735472, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 851149, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 950065, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 852744, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 740698, + "title": "Data fusion for maritime security applications", + "topic": "SEC-19-BES-2016" +},{ + "projectID": 739349, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 948727, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 834103, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101025661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 790318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 877113, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 695573, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 770515, + "title": "Research on employability, skills and labour market integration of migrants", + "topic": "REV-INEQUAL-13-2017" +},{ + "projectID": 722957, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 884847, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 838688, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 802080, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 897004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701306, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 877557, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101023968, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 802793, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 673969, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 750460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101004717, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 794800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 818725, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 862005, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 846982, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870610, + "title": "Collaborative approaches to cultural heritage for social cohesion", + "topic": "DT-TRANSFORMATIONS-11-2019" +},{ + "projectID": 792456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851621, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 712754, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 705872, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884139, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 888063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 804989, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 892963, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658694, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 872104, + "title": "Building the SwafS knowledge base", + "topic": "SwafS-20-2018-2019" +},{ + "projectID": 807081, + "title": "Systems", + "topic": "CS2-GAM-2018-SYS" +},{ + "projectID": 892378, + "title": "Stimulating demand for sustainable energy skills in the construction sector", + "topic": "LC-SC3-EE-3-2019-2020" +},{ + "projectID": 828185, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710337, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 101023342, + "title": "Improve the sustainability of coatings", + "topic": "BBI-2020-SO3-R5" +},{ + "projectID": 863819, + "title": "Research on advanced tools and technological development", + "topic": "LC-SC3-ES-6-2019" +},{ + "projectID": 886990, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718144, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 729183, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 736814, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 663444, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 957551, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 696684, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 673887, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 768084, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 761623, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101002728, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 755563, + "title": "Alternative recirculation filter for better cabin air quality", + "topic": "JTI-CS2-2016-CFP04-SYS-02-27" +},{ + "projectID": 820872, + "title": "Cabin air quality and passenger comfort", + "topic": "JTI-CS2-2017-CfP07-SYS-02-44" +},{ + "projectID": 866717, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775051, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 762392, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 711618, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 816397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 708527, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101018274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 791632, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 842460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774199, + "title": "Smart Cities and Communities lighthouse projects", + "topic": "SCC-1-2016-2017" +},{ + "projectID": 774918, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 659442, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 876526, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663828, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 747882, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803243, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 724086, + "title": "Coordination of activities in support of road automation", + "topic": "ART-06-2016" +},{ + "projectID": 886050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 735655, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 876289, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652938, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 684467, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 683430, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 831992, + "title": "Evaluation and modelling of comfort driving parameters in a Cabin Demonstrator", + "topic": "JTI-CS2-2018-CfP08-AIR-02-66" +},{ + "projectID": 890200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772080, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 698422, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 773710, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101009283, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 769276, + "title": "Optimisation of transport infrastructure including terminals", + "topic": "MG-7-2-2017" +},{ + "projectID": 820655, + "title": "Climate change impacts in Europe", + "topic": "LC-CLA-03-2018" +},{ + "projectID": 636158, + "title": "Next generation transport infrastructure: resource efficient, smarter and safer", + "topic": "MG-8.2a-2014" +},{ + "projectID": 745062, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 868299, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 784480, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 855090, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773763, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 775434, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 690636, + "title": "Strengthening the knowledge and capacities of local authorities", + "topic": "MG-5.4-2015" +},{ + "projectID": 833290, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 739723, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 763278, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 869125, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 710458, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 835880, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774086, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 708392, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 732068, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 818002, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 723574, + "title": "Highly efficient insulation materials with improved properties", + "topic": "EEB-01-2016" +},{ + "projectID": 762505, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 882775, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 853568, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 746094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 855012, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859152, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865799, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 861841, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 866687, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684681, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 737741, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 653861, + "title": "Electric two-wheelers and new ultra-light vehicle concepts", + "topic": "GV-5-2014" +},{ + "projectID": 819169, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 781947, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 633338, + "title": "Reducing impacts and costs of freight and service trips in urban areas", + "topic": "MG-5.2-2014" +},{ + "projectID": 960713, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656439, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 738071, + "title": "Aerodynamic rigs for VHBR IP Turbine", + "topic": "JTI-CS2-2016-CFP03-ENG-03-11" +},{ + "projectID": 647000, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 823073, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697030, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 820567, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 896417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637138, + "title": "Materials for building envelope", + "topic": "EeB-01-2014" +},{ + "projectID": 965546, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 823487, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710148, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 769850, + "title": "Electrified urban commercial vehicles integration with fast charging infrastructure", + "topic": "GV-08-2017" +},{ + "projectID": 790471, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101025770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 829448, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 673453, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 769944, + "title": "Demonstration (pilots) for integration of electrified L-category vehicles in the urban transport system", + "topic": "GV-10-2017" +},{ + "projectID": 736298, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 814801, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 783518, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 683366, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 640896, + "title": "Understanding, preventing and mitigating the potential environmental impacts and risks of shale gas exploration and exploitation", + "topic": "LCE-16-2014" +},{ + "projectID": 807237, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 821352, + "title": "Development of a Foreign Object Debris (FOD) protection device applied to an electrical ECS fresh air inlet.", + "topic": "JTI-CS2-2017-CfP07-SYS-02-45" +},{ + "projectID": 816348, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761377, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 878799, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 101027598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864695, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719028, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 955390, + "title": "Understanding and mitigating the effects on public health of emerging non-regulated nanoparticle emissions issues and noise", + "topic": "LC-MG-1-14-2020" +},{ + "projectID": 101025856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 946203, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957669, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 745016, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 649724, + "title": "Socioeconomic research on energy efficiency", + "topic": "EE-12-2014" +},{ + "projectID": 101007858, + "title": "Airport level assessments for fixed wing aircraft", + "topic": "JTI-CS2-2020-CfP11-TE2-01-12" +},{ + "projectID": 101003757, + "title": "Innovative nature-based solutions for carbon neutral cities and improved air quality", + "topic": "LC-CLA-11-2020" +},{ + "projectID": 789549, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 946288, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776261, + "title": "EGNSS mass market applications", + "topic": "GALILEO-2-2017" +},{ + "projectID": 681040, + "title": "Global Alliance for Chronic Diseases. Prevention and treatment of lung diseases", + "topic": "HCO-06-2015" +},{ + "projectID": 778501, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 829319, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016956, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 780386, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101033564, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 808760, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 783025, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 645241, + "title": "Advanced Thin, Organic and Large Area Electronics (TOLAE) technologies", + "topic": "ICT-03-2014" +},{ + "projectID": 728673, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101008819, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 644021, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 662362, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 877606, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653926, + "title": "Electric two-wheelers and new ultra-light vehicle concepts", + "topic": "GV-5-2014" +},{ + "projectID": 814893, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 101003318, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 776361, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 769086, + "title": "Increasing the take up and scale-up of innovative solutions to achieve sustainable mobility in urban areas", + "topic": "MG-4.1-2017" +},{ + "projectID": 754264, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 815189, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 945842, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649689, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2014" +},{ + "projectID": 836087, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710902, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 840217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 636027, + "title": "Towards the energy efficient and emission free vessel", + "topic": "MG-4.1-2014" +},{ + "projectID": 777035, + "title": "Airport Level Assessment (Fixed-wing)", + "topic": "JTI-CS2-2016-CFP05-TE2-01-01" +},{ + "projectID": 825581, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 947288, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 812136, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719443, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 735385, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 661009, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723274, + "title": "Networked and efficient logistics clusters", + "topic": "MG-5.1-2016" +},{ + "projectID": 847744, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733967, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 691883, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2015" +},{ + "projectID": 690968, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 782875, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 836211, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 765602, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 888247, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 640959, + "title": "Knowing, doing, being: cognition beyond problem solving", + "topic": "FETPROACT-2-2014" +},{ + "projectID": 673428, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 101009840, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 840165, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 875964, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831138, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 837253, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636220, + "title": "Cooperative ITS for safe, congestion-free and sustainable mobility", + "topic": "MG-3.5a-2014" +},{ + "projectID": 676760, + "title": "New tools and methodologies to reduce the gap between predicted and actual energy performances at the level of buildings and blocks of buildings", + "topic": "EeB-07-2015" +},{ + "projectID": 774719, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 756656, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 868509, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835770, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851854, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 646178, + "title": "Materials-based solutions for protection or preservation of European cultural heritage", + "topic": "NMP-21-2014" +},{ + "projectID": 640598, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 840513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 832838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 811822, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717745, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 782788, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 744040, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 711530, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 877649, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653203, + "title": "Electric two-wheelers and new ultra-light vehicle concepts", + "topic": "GV-5-2014" +},{ + "projectID": 718222, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 727816, + "title": "Big Data supporting Public Health policies", + "topic": "SC1-PM-18-2016" +},{ + "projectID": 871234, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 847153, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 718185, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 827368, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006841, + "title": "Reducing the environmental impact of hybrid light duty vehicles", + "topic": "LC-GV-07-2020" +},{ + "projectID": 874703, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 750533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 636012, + "title": "Transforming the use of conventionally fuelled vehicles in urban areas", + "topic": "MG-5.1-2014" +},{ + "projectID": 650195, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 705861, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 876257, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717022, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 754159, + "title": "Overcoming market barriers and promoting deep renovation of buildings", + "topic": "EE-11-2016-2017" +},{ + "projectID": 828030, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 784620, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 704268, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 761445, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 878052, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836080, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762506, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 875907, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723984, + "title": "Promoting the deployment of green transport, towards Eco-labels for logistics", + "topic": "MG-5.3-2016" +},{ + "projectID": 101028909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 711235, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 738719, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 689868, + "title": "New sustainable exploration technologies and geomodels", + "topic": "SC5-11d-2015" +},{ + "projectID": 730957, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 763231, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 762091, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 865495, + "title": "Supporting assessments of 'innovation management capacity' by the Enterprise Europe Network", + "topic": "IBA-INNOSUP-IMC-2019" +},{ + "projectID": 707530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 640253, + "title": "In-Orbit demonstration/Validation (IOD/IOV)", + "topic": "COMPET-05-2014" +},{ + "projectID": 836849, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 848532, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 651425, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 748625, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 667696, + "title": "Promoting mental wellbeing in the ageing population", + "topic": "PHC-22-2015" +},{ + "projectID": 749952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 680153, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 645500, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 863969, + "title": "Research for the development of Particulate Matter (PM) regulations and guidelines", + "topic": "JTI-CS2-2018-CFP09-THT-06" +},{ + "projectID": 860101, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 647351, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 834228, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 818715, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 844179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 670436, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 883823, + "title": "Support for the opening of low-carbon energy research databases in Europe", + "topic": "LC-SC3-CC-3-2019" +},{ + "projectID": 874184, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690674, + "title": "International cooperation in aeronautics with Japan", + "topic": "MG-1.8-2015" +},{ + "projectID": 816766, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674849, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 655023, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 642886, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 864694, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 800502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696040, + "title": "Development and market roll-out of innovative energy services and financial schemes for sustainable energy", + "topic": "EE-21-2015" +},{ + "projectID": 755330, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 885395, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 643366, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 947084, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841127, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 683626, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 674844, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643327, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 662376, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 743425, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 744208, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 673106, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 724109, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 824021, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 660618, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831255, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 839001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 848261, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 653985, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 817580, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 641988, + "title": "Secondary raw materials inventory", + "topic": "WASTE-4c-2014" +},{ + "projectID": 757343, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 787576, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 824069, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 637245, + "title": "Support for the enhancement of the impact of FoF PPP projects", + "topic": "FoF-07-2014" +},{ + "projectID": 641528, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 719496, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 899899, + "title": "Contribution to the IRENA’s Clean Energy Innovation Analysis", + "topic": "IBA-ENERGY-IRENA-2019" +},{ + "projectID": 748862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945549, + "title": "The Eco-Design Transverse Activity GAM 2020", + "topic": "CS2-GAM-2020-ECO" +},{ + "projectID": 953016, + "title": "Increase performance and reliability of photovoltaic plants", + "topic": "LC-SC3-RES-33-2020" +},{ + "projectID": 811562, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739577, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 744081, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 663879, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 948015, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 741677, + "title": "Participatory research and innovation via Science Shops", + "topic": "SwafS-01-2016" +},{ + "projectID": 760949, + "title": "Systems of materials characterisation for model, product and process optimisation", + "topic": "NMBP-07-2017" +},{ + "projectID": 656240, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 776766, + "title": "Innovative financing, business and governance models for adaptive re-use of cultural heritage", + "topic": "SC5-22-2017" +},{ + "projectID": 723867, + "title": "Network to capitalise on strong European position in materials modelling and to allow industry to reap the benefits", + "topic": "NMBP-24-2016" +},{ + "projectID": 826025, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 683049, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 642018, + "title": "Linkages between climate change actions and sustainable development", + "topic": "SC5-03b-2014" +},{ + "projectID": 724949, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101034329, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 831977, + "title": "Aerodynamic upgrade of Surface Air Cooled Oil Cooler (SACOC)", + "topic": "JTI-CS2-2018-CfP08-ENG-01-37" +},{ + "projectID": 635183, + "title": "Developing and comparing new models for safe and efficient, prevention oriented health and care systems", + "topic": "PHC-23-2014" +},{ + "projectID": 722824, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 951164, + "title": "Closing the finance gap for IPR-driven start-ups and SMEs", + "topic": "INNOSUP-10-2020" +},{ + "projectID": 835682, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 741466, + "title": "Networking of National representatives and resources centres on Gender in R&I", + "topic": "SwafS-19-2016" +},{ + "projectID": 700621, + "title": "Critical Infrastructure Protection topic 3: Critical Infrastructure resilience indicator - analysis and development of methods for assessing resilience", + "topic": "DRS-14-2015" +},{ + "projectID": 636071, + "title": "Smart Rail Services", + "topic": "MG-2.2-2014" +},{ + "projectID": 865680, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 793824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 773406, + "title": "Demonstration of system integration with smart transmission grid and storage technologies with increasing share of renewables", + "topic": "LCE-04-2017" +},{ + "projectID": 101024572, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 945610, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657118, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 740127, + "title": "ERA Mobility and Career Day", + "topic": "SwafS-20-2016" +},{ + "projectID": 847641, + "title": "Encouraging innovation in nuclear safety for the benefit of European citizen", + "topic": "NFRP-2018-10" +},{ + "projectID": 723246, + "title": "Development, production and use of high performance and lightweight materials for vessels and equipment", + "topic": "MG-2.2-2016" +},{ + "projectID": 675074, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 827248, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 695262, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 686804, + "title": "Aerodynamic characterization of control devices for wing loads control and aircraft response characterization of a regional turboprop aircraft", + "topic": "JTI-CS2-2014-CFP01-REG-02-01" +},{ + "projectID": 659596, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 817897, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 785041, + "title": "Increasing capacities for actual implementation of energy efficiency measures in industry and services", + "topic": "EE-15-2017" +},{ + "projectID": 676973, + "title": "RISK FINANCE", + "topic": "RISK FINANCE" +},{ + "projectID": 715618, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101002721, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 803506, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 789717, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 880954, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876317, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697259, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 675003, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 643417, + "title": "ERA-NET: Establishing synergies between the Joint Programming on Neurodegenerative Diseases Research and Horizon 2020", + "topic": "HCO-07-2014" +},{ + "projectID": 715775, + "title": "Industry focused eco-design", + "topic": "JTI-CS2-2015-CFP02-ENG-03-01" +},{ + "projectID": 835401, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 747985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 643486, + "title": "Capacity-Building in Technology Transfer", + "topic": "CBTT-1-2014" +},{ + "projectID": 683980, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 741950, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 683184, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 807440, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101017833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 711459, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 695873, + "title": "Increasing energy performance of existing buildings through process and organisation innovations and creating a market for deep renovation", + "topic": "EE-05-2015" +},{ + "projectID": 673810, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 945530, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673577, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 838763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 739096, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 820707, + "title": "Coordinated approaches to funding and promotion of research and innovation for the circular economy", + "topic": "CE-SC5-05-2018" +},{ + "projectID": 779024, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 850975, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 840702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 644906, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 733381, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 833546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 647860, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101027235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 727470, + "title": "Social Sciences and Humanities Support for the Energy Union", + "topic": "LCE-31-2016-2017" +},{ + "projectID": 664629, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 857524, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 730313, + "title": "Smart Specialisation for systemic eco-innovation/circular economy", + "topic": "CIRC-03-2016" +},{ + "projectID": 774210, + "title": "How to tackle the childhood obesity epidemic?", + "topic": "SFS-39-2017" +},{ + "projectID": 641526, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 673477, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 949886, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 749761, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 730882, + "title": "SET Plan Conference 2016 - Central European Energy Conference X", + "topic": "IBA-ENERGY-SETPLAN-2016" +},{ + "projectID": 683253, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101003388, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 680843, + "title": "Energy and resource management systems for improved efficiency in the process industries", + "topic": "SPIRE-06-2015" +},{ + "projectID": 892581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 854762, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 689238, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 674819, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 892166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 822189, + "title": "Extreme ideologies and polarisation", + "topic": "SU-GOVERNANCE-11-2018" +},{ + "projectID": 695101, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 643350, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 654731, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 674228, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 896821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734370, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 652171, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 850760, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 768681, + "title": "Support for the enhancement of the impact of PILOT projects", + "topic": "NMBP-38-2017" +},{ + "projectID": 642420, + "title": "Consolidating the European Research Area on biodiversity and ecosystem services", + "topic": "SC5-09-2014" +},{ + "projectID": 712646, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 876008, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956364, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 895913, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101032175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 745447, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 770643, + "title": "Towards a new growth strategy in Europe - Improved economic and social measurement, data and official statistics", + "topic": "CO-CREATION-07-2017" +},{ + "projectID": 790231, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 652497, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 768710, + "title": "Integration of unconventional technologies for multi-material processing into manufacturing systems", + "topic": "FOF-07-2017" +},{ + "projectID": 666157, + "title": "Post-lithium ion batteries for electric automotive applications", + "topic": "NMP-17-2014" +},{ + "projectID": 644657, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 101020833, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101038082, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 887283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 723205, + "title": "Transport infrastructure innovation to increase the transport system safety at modal and intermodal level (including nodes and interchanges)", + "topic": "MG-3.4-2016" +},{ + "projectID": 725687, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 768960, + "title": "Protection of all road users in crashes", + "topic": "MG-3.2-2017" +},{ + "projectID": 730292, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 708815, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 836280, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956703, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 690915, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 848620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790850, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101010128, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 879405, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691787, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 653339, + "title": "Towards seamless mobility addressing fragmentation in ITS deployment in Europe", + "topic": "MG-7.2b-2014" +},{ + "projectID": 860911, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 968190, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858018, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 738131, + "title": "Eco Design: Injection of thermoplastic reinforced with long fibers (carbon, glass, Kevlar…) for scroll reinforcement", + "topic": "JTI-CS2-2016-CFP03-SYS-02-18" +},{ + "projectID": 669204, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 833611, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 101010692, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 723517, + "title": "Affordable weight reduction of high-volume vehicles and components taking into account the entire life-cycle", + "topic": "NMBP-08-2016" +},{ + "projectID": 769506, + "title": "Multi-level modelling and testing of electric vehicles and their components", + "topic": "GV-07-2017" +},{ + "projectID": 637080, + "title": "Symbiotic human-robot collaboration for safe and dynamic multimodal manufacturing systems", + "topic": "FoF-06-2014" +},{ + "projectID": 816678, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007326, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 646226, + "title": "Materials solutions for use in the creative industry sector", + "topic": "NMP-18-2014" +},{ + "projectID": 877369, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710957, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 731343, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 817150, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660759, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 778893, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 790748, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 761379, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 673763, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 815971, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815738, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677625, + "title": "Industrial technologies for advanced joining and assembly processes for multi-materials", + "topic": "FoF-12-2015" +},{ + "projectID": 650006, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 755515, + "title": "Substitution of Chromium(VI)-based substances for corrosion protection of Aluminum- and Magnesium alloys", + "topic": "JTI-CS2-2016-CFP04-ENG-02-05" +},{ + "projectID": 685100, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 688093, + "title": "Cross-cutting ICT KETs", + "topic": "ICT-28-2015" +},{ + "projectID": 697234, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 761851, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 854636, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 792214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 809654, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 855055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775296, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 724958, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 885793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871477, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 767509, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 725076, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 675715, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 680725, + "title": "Integrated design and management of production machinery and processes", + "topic": "FoF-14-2015" +},{ + "projectID": 814632, + "title": "Open Innovation Test Beds for Lightweight, nano-enabled multifunctional composite materials and components (IA)", + "topic": "DT-NMBP-01-2018" +},{ + "projectID": 880726, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806095, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 674321, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 808257, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 712708, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 808690, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 762394, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 775202, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 687014, + "title": "Embedded sensors technology for air quality measurement", + "topic": "JTI-CS2-2014-CFP01-SYS-02-08" +},{ + "projectID": 101006817, + "title": "Efficient and safe connected and automated heavy-duty vehicles in real logistics operations", + "topic": "DT-ART-05-2020" +},{ + "projectID": 957360, + "title": "5G PPP – 5G core technologies innovation", + "topic": "ICT-42-2020" +},{ + "projectID": 837041, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733619, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 760915, + "title": "Pilot Lines for Manufacturing of Nanotextured surfaces with mechanically enhanced properties", + "topic": "PILOTS-03-2017" +},{ + "projectID": 101003587, + "title": "Understanding the transition to a circular economy and its implications on the environment, economy and society", + "topic": "CE-SC5-25-2020" +},{ + "projectID": 688226, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 810708, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 773786, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 636302, + "title": "Developing smart factories that are attractive to workers", + "topic": "FoF-04-2014" +},{ + "projectID": 674045, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 777595, + "title": "Innovative materials & modular design for rolling stock applications", + "topic": "S2R-OC-IP1-01-2017" +},{ + "projectID": 826760, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645662, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 666435, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 732016, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 899436, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 950866, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 880701, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723021, + "title": "Safety and end-user acceptance aspects of road automation in the transition period", + "topic": "ART-04-2016" +},{ + "projectID": 729496, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 723658, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 717485, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 716864, + "title": "Design Against Distortion: Part distortion prediction, design for minimized distortion, carbon-epoxy aerospace parts", + "topic": "JTI-CS2-2015-CFP02-AIR-02-15" +},{ + "projectID": 728356, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 721256, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 701897, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 636926, + "title": "Global energy and other resources efficiency in manufacturing enterprises", + "topic": "FoF-03-2014" +},{ + "projectID": 680718, + "title": "Industrial technologies for advanced joining and assembly processes for multi-materials", + "topic": "FoF-12-2015" +},{ + "projectID": 847038, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 778308, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 717830, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 636537, + "title": "Cooperative ITS for safe, congestion-free and sustainable mobility", + "topic": "MG-3.5a-2014" +},{ + "projectID": 729359, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 696747, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 711789, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 808899, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 778627, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 815783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717509, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 860104, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 815494, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 729156, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 101015405, + "title": "Network and end-device equipment for the validation of the next generation of TCMS (TD1.2)", + "topic": "S2R-OC-IP1-02-2020" +},{ + "projectID": 822442, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821065, + "title": "Design and Development of a high temperature HVDC busbar", + "topic": "JTI-CS2-2017-CfP07-SYS-02-43" +},{ + "projectID": 101034285, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 689510, + "title": "Materials under extreme conditions", + "topic": "SC5-12b-2015" +},{ + "projectID": 654467, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 722496, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 666449, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 656582, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816402, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739498, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 769929, + "title": "Production of next generation battery cells in Europe for transport applications", + "topic": "GV-13-2017" +},{ + "projectID": 873579, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 766907, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 640212, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 830903, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 882637, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728772, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101028449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 824290, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 876019, + "title": "ECSEL-2019-2-RIA", + "topic": "ECSEL-2019-2-RIA" +},{ + "projectID": 794831, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 762934, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 687222, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 817309, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739789, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 666566, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 745077, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 751622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 785005, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 790643, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 717084, + "title": "Validation of aero-vibro-acoustic model on new aerodynamic configurations.", + "topic": "JTI-CS2-2015-CFP02-LPA-01-05" +},{ + "projectID": 955629, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 710962, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 766180, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 714437, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 643319, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101006853, + "title": "Cities as climate-resilient, connected multimodal nodes for smart and clean mobility: new approaches towards demonstrating and testing innovative solutions", + "topic": "LC-MG-1-12-2020" +},{ + "projectID": 632927, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 681546, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 763330, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 644814, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 751722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 774772, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 674833, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 845736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727440, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 648496, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 783174, + "title": "RIA", + "topic": "ECSEL-2017-2" +},{ + "projectID": 101029346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 723051, + "title": "Automation pilots for passenger cars", + "topic": "ART-02-2016" +},{ + "projectID": 761510, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 876943, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 831963, + "title": "Innovative recirculation/air treatment system.", + "topic": "JTI-CS2-2018-CfP08-REG-01-16" +},{ + "projectID": 650561, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 744697, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 686086, + "title": "Novel materials by design for substituting critical materials", + "topic": "NMP-23-2015" +},{ + "projectID": 820695, + "title": "Efficient recycling processes for plastic containing materials (IA)", + "topic": "CE-SPIRE-10-2018" +},{ + "projectID": 674823, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 878051, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675919, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 809091, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 811187, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 670010, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 839770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658045, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681988, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 651490, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 686098, + "title": "Increasing the capacity to perform nano-safety assessment", + "topic": "NMP-29-2015" +},{ + "projectID": 685775, + "title": "Support for clustering and networking in the micro- & nanofluidics community", + "topic": "NMP-40-2015" +},{ + "projectID": 759078, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 851421, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 723509, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 706668, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678396, + "title": "Consolidating the environmental sustainability of European aquaculture", + "topic": "SFS-11b-2015" +},{ + "projectID": 790559, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 673155, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 736072, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 814735, + "title": "Human Factors in Transport Safety", + "topic": "MG-2-1-2018" +},{ + "projectID": 823307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836168, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684375, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 802648, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 827005, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773139, + "title": "Validation of diagnostic tools for animal and plant health", + "topic": "SFS-13-2017" +},{ + "projectID": 674848, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 826156, + "title": "Innovative/breakthrough mobility concepts (with rail as backbone)", + "topic": "S2R-OC-IPX-03-2018" +},{ + "projectID": 672162, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 797444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 650236, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 788812, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 945273, + "title": "Fostering innovation in decommissioning of nuclear facilities", + "topic": "NFRP-2019-2020-09" +},{ + "projectID": 693845, + "title": "Empowering stakeholders to assist public authorities in the definition and implementation of sustainable energy policies and measures", + "topic": "EE-09-2015" +},{ + "projectID": 769827, + "title": "Participatory approaches and social innovation in culture", + "topic": "CULT-COOP-06-2017" +},{ + "projectID": 101001197, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 774954, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 642954, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 764086, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 655703, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 753496, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669255, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 760173, + "title": "Next generation system integrating tangible and intangible materials model components to support innovation in industry", + "topic": "NMBP-25-2017" +},{ + "projectID": 869274, + "title": "Raw materials innovation actions: exploration and Earth observation in support of sustainable mining", + "topic": "SC5-10-2019-2020" +},{ + "projectID": 723525, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 893735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 832875, + "title": "Pan-European networks of practitioners and other actors in the field of security", + "topic": "SU-GM01-2018-2019-2020" +},{ + "projectID": 778421, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 660275, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694638, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2015" +},{ + "projectID": 758791, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 864940, + "title": "Rear End Structural Test Program – Component & Subcomponent tests", + "topic": "JTI-CS2-2018-CfP09-LPA-01-62" +},{ + "projectID": 794117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754051, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 683660, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 645900, + "title": "Facilitating knowledge management, networking and coordination in NMP", + "topic": "NMP-36-2014" +},{ + "projectID": 645769, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 101000442, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 673674, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 723858, + "title": "Performance indicators and monitoring techniques for energy-efficiency and environmental quality at building and district level", + "topic": "EEB-02-2016" +},{ + "projectID": 705768, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 730468, + "title": "New governance, business, financing models and economic impact assessment tools for sustainable cities with nature-based solutions (urban re-naturing)", + "topic": "SCC-03-2016" +},{ + "projectID": 659706, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 761496, + "title": "Smart Anything Everywhere Initiative", + "topic": "ICT-04-2017" +},{ + "projectID": 101017047, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 836255, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701419, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 961253, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 667364, + "title": "Health promotion and disease prevention: improved inter-sector co-operation for environment and health based interventions", + "topic": "PHC-04-2015" +},{ + "projectID": 101006681, + "title": "'First of a Kind' solutions for sustainable transport and mobility: EU initiative for accelerating EU-wide market access, scale up and derisking", + "topic": "MG-3-8-2020" +},{ + "projectID": 870702, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 101007713, + "title": "Advanced characterization of friction and surface damage for gears running in loss of lubrication conditions", + "topic": "JTI-CS2-2020-CfP11-LPA-01-89" +},{ + "projectID": 760218, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 803419, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 762347, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 819953, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 831356, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 752626, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 723757, + "title": "Models and tools for heating and cooling mapping and planning", + "topic": "EE-05-2016" +},{ + "projectID": 644579, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 845121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 788231, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 645791, + "title": "Understanding and supporting business model innovation", + "topic": "INSO-2-2014" +},{ + "projectID": 643373, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 727277, + "title": "Towards an integrated Mediterranean Sea Observing System", + "topic": "BG-12-2016" +},{ + "projectID": 653909, + "title": "Ethical/Societal Dimension Topic 2: Enhancing cooperation between law enforcement agencies and citizens - Community policing", + "topic": "FCT-14-2014" +},{ + "projectID": 833933, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 752163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 777828, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 741223, + "title": "Cost reduction of new Nearly Zero-Energy buildings", + "topic": "EE-13-2016" +},{ + "projectID": 739767, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 680014, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 742402, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 694943, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 770730, + "title": "Research Social Platform on Migration and Asylum", + "topic": "REV-INEQUAL-12-2017" +},{ + "projectID": 658793, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 867471, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 101004635, + "title": "Sustainable practices for the integration of newly arrived migrants into societies", + "topic": "MIGRATION-10-2020" +},{ + "projectID": 690637, + "title": "Fostering transnational cooperation in European transport research and innovation – NCP network", + "topic": "MG-9.5-2015" +},{ + "projectID": 701797, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 831802, + "title": "Innovative test rig for the investigation of gust loads in transonic flow conditions", + "topic": "JTI-CS2-2018-CfP08-AIR-01-38" +},{ + "projectID": 689687, + "title": "Water management solutions for agricultural sector, thematic networks", + "topic": "WATER-4b-2015" +},{ + "projectID": 790554, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 659881, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 814332, + "title": "9. Innovative Enterprise Week 2018 - Bulgaria", + "topic": "IBA-ARF-Bulgaria-2018" +},{ + "projectID": 646489, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 888753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687320, + "title": "Stimulating wider research use of Copernicus Sentinel Data", + "topic": "EO-2-2015" +},{ + "projectID": 771779, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 770115, + "title": "Improving accessibility, inclusive mobility and equity: new tools and business models for public transport in prioritised areas", + "topic": "MG-8-4-2017" +},{ + "projectID": 656035, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 785435, + "title": "Manufacturing oriented solution keel beam", + "topic": "JTI-CS2-2017-CFP06-LPA-02-20" +},{ + "projectID": 739676, + "title": "Support to the development and analysis of a R&I policy taxonomy and questionnaire", + "topic": "IBA-SC6-OECD-2016" +},{ + "projectID": 838587, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 707231, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 644286, + "title": "Web Entrepreneurship", + "topic": "ICT-13-2014" +},{ + "projectID": 945057, + "title": "Safety assessments for Long Term Operation (LTO) upgrades of Generation II and III reactors", + "topic": "NFRP-2019-2020-02" +},{ + "projectID": 864733, + "title": "Additive manufacturing boundary limits assessment for Eco Design process optimization [ECO]", + "topic": "JTI-CS2-2018-CfP09-ENG-01-42" +},{ + "projectID": 643806, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 870130, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 634869, + "title": "Evaluating existing screening and prevention programmes", + "topic": "PHC-06-2014" +},{ + "projectID": 727230, + "title": "Organic breeding – Increasing the competitiveness of the organic breeding and farming sectors", + "topic": "SFS-07-2016-2017" +},{ + "projectID": 735359, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 635975, + "title": "Traffic safety analysis and integrated approach towards the safety of Vulnerable Road Users", + "topic": "MG-3.4-2014" +},{ + "projectID": 695982, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 680676, + "title": "Innovative design tools for refurbishing of buildings at district level", + "topic": "EeB-05-2015" +},{ + "projectID": 947654, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 677739, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 891737, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674822, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 636835, + "title": "Materials for building envelope", + "topic": "EeB-01-2014" +},{ + "projectID": 745625, + "title": "Solutions for reduced maintenance, increased reliability and extended life-time of off-shore wind turbines/farms", + "topic": "LCE-13-2016" +},{ + "projectID": 699818, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655502, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 699119, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 726574, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 653587, + "title": "Law enforcement capabilities topic 3: Pan European platform for serious gaming and training", + "topic": "FCT-07-2014" +},{ + "projectID": 843071, + "title": "Implementation of the OECD-European Commission administrative arrangement", + "topic": "IBA-SC6-OECD-2018-2019" +},{ + "projectID": 699118, + "title": "SME business model innovation", + "topic": "INSO-10-2015" +},{ + "projectID": 680890, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 688192, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 755645, + "title": "Experimental & Numerical analysis dedicated to FOD Management for Turboprop Air intake", + "topic": "JTI-CS2-2016-CFP04-ENG-01-14" +},{ + "projectID": 656540, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645717, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 726940, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 864771, + "title": "Safe emergency trajectory generator", + "topic": "JTI-CS2-2018-CFP09-LPA-03-18" +},{ + "projectID": 795309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 752520, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645127, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 720219, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 674873, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 740696, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 639668, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 836238, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755183, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 672109, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 642612, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 826295, + "title": "Supporting investment in smart living environments for ageing well through certification", + "topic": "SC1-HCC-01-2018" +},{ + "projectID": 779322, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 879980, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 714569, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 873964, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 822400, + "title": "Mapping and overcoming integration challenges for migrant children", + "topic": "MIGRATION-05-2018-2020" +},{ + "projectID": 869505, + "title": "Visionary and integrated solutions to improve well-being and health in cities", + "topic": "SC5-14-2019" +},{ + "projectID": 645886, + "title": "ICT-enabled open government", + "topic": "INSO-1-2014" +},{ + "projectID": 688196, + "title": "Pre-commercial procurement open to all areas of public interest requiring new ICT solutions", + "topic": "ICT-36-2015" +},{ + "projectID": 101003352, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 808096, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 649416, + "title": "Societal and political engagement of young people and their perspectives on Europe", + "topic": "YOUNG-5a-2014" +},{ + "projectID": 762220, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 864252, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101032933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693443, + "title": "ERA-NET on Smart Urban Futures", + "topic": "EURO-5-2015" +},{ + "projectID": 101004459, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 861091, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 962563, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 892779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695931, + "title": "Empowering stakeholders to assist public authorities in the definition and implementation of sustainable energy policies and measures", + "topic": "EE-09-2015" +},{ + "projectID": 870753, + "title": "Innovative solutions for inclusive and sustainable urban environments", + "topic": "TRANSFORMATIONS-03-2018-2019" +},{ + "projectID": 882749, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 780247, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 684890, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 101023245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706396, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 664404, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 762399, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 704728, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 767454, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 836196, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822215, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 870757, + "title": "A European Social Catalyst Fund to scale up high performing social innovations in the provision of social services", + "topic": "GOVERNANCE-19-2019" +},{ + "projectID": 951842, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 868153, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954654, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748344, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 807716, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 875160, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 876711, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774679, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 876635, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663639, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 634149, + "title": "Traffic safety analysis and integrated approach towards the safety of Vulnerable Road Users", + "topic": "MG-3.4-2014" +},{ + "projectID": 695943, + "title": "Ensuring effective implementation of EU product efficiency legislation", + "topic": "EE-15-2015" +},{ + "projectID": 649031, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 693651, + "title": "Innovative schemes for open innovation and science 2.0", + "topic": "INSO-4-2015" +},{ + "projectID": 646555, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 713813, + "title": "Demonstrating and testing innovative solutions for cleaner and better urban transport and mobility", + "topic": "MG-5.5b-2015" +},{ + "projectID": 678266, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 661646, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875215, + "title": "Large Scale pilots of personalised & outcome based integrated care", + "topic": "SC1-DTH-11-2019" +},{ + "projectID": 857592, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 797629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 957171, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 845905, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 787336, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 959072, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 101026892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 870603, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 729619, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 637683, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 857622, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 773305, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 815531, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957026, + "title": "European building stock data 4.0", + "topic": "LC-SC3-B4E-7-2020" +},{ + "projectID": 646883, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 835896, + "title": "Modelling in support to the transition to a Low-Carbon Energy System in Europe", + "topic": "LC-SC3-CC-2-2018" +},{ + "projectID": 655645, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 695822, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2015" +},{ + "projectID": 727698, + "title": "Resource-efficient and profitable industrial crops on marginal land", + "topic": "RUR-07-2016" +},{ + "projectID": 662784, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 770138, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 715070, + "title": "Experimental characterization of turbulent pressure fluctuations on realistic Contra-Rotating Open Rotor (CROR) 2D airfoil in representative high subsonic Mach number.", + "topic": "JTI-CS2-2015-CFP02-AIR-01-09" +},{ + "projectID": 678042, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 728910, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 667946, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 799993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660362, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 726618, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 702772, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 687686, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 772946, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 822380, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 687922, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 693881, + "title": "ICT-enabled open government", + "topic": "INSO-1-2015" +},{ + "projectID": 893857, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side as energy resource", + "topic": "LC-SC3-EE-13-2018-2019-2020" +},{ + "projectID": 745942, + "title": "Addressing key priority R&I issues for the first-of-the-kind geological repositories", + "topic": "NFRP-6" +},{ + "projectID": 788529, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101031698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 689802, + "title": "Advanced ICT systems and services for integrated care", + "topic": "PHC-25-2015" +},{ + "projectID": 101038044, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 845196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029233, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 762469, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 864333, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 825268, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 770816, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 702976, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 764465, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 861917, + "title": "Integrated approaches to food safety controls across the food chain", + "topic": "SFS-37-2019" +},{ + "projectID": 884442, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 649081, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 866319, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 661642, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 739567, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 101001328, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 661249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831433, + "title": "Implementation and analysis of the joint Commission-OECD international survey on STI policies", + "topic": "IBA-SC6-OECD-2018" +},{ + "projectID": 890144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 726755, + "title": "Understanding the transformation of European public administrations", + "topic": "CULT-COOP-11-2016-2017" +},{ + "projectID": 787592, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 737492, + "title": "Co-creation between public administrations: once-only principle", + "topic": "CO-CREATION-05-2016" +},{ + "projectID": 870980, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 770141, + "title": "EU-China cooperation on sustainable urbanisation", + "topic": "ENG-GLOBALLY-08-2016-2017" +},{ + "projectID": 101031639, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side", + "topic": "LC-SC3-B4E-14-2020" +},{ + "projectID": 856960, + "title": "Digital health and care services", + "topic": "SC1-DTH-10-2019-2020" +},{ + "projectID": 727796, + "title": "PPI for deployment and scaling up of ICT solutions for active and healthy ageing", + "topic": "SC1-PM-13-2016" +},{ + "projectID": 823310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833105, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739582, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 693319, + "title": "ICT-enabled open government", + "topic": "INSO-1-2015" +},{ + "projectID": 806616, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 101004704, + "title": "Inclusive and innovative practices for the integration of recently arrived migrants in local communities", + "topic": "MIGRATION-04-2020" +},{ + "projectID": 875325, + "title": "Large Scale pilots of personalised & outcome based integrated care", + "topic": "SC1-DTH-11-2019" +},{ + "projectID": 822615, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 851033, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 749154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 763566, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 754640, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 889459, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740714, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 101006715, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 643275, + "title": "Experimentation and development on federated Japan - EU testbeds", + "topic": "EUJ-4-2014" +},{ + "projectID": 897978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 645094, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 101024440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 769872, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 650856, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101018243, + "title": "Implementation and analysis of the joint Commission-OECD international survey on STI policies", + "topic": "IBA-SC6-Reiter3-2020" +},{ + "projectID": 814654, + "title": "Open Innovation Test Beds for Safety Testing of Medical Technologies for Health (IA)", + "topic": "DT-NMBP-02-2018" +},{ + "projectID": 892781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 735419, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 731264, + "title": "European Platform for energy-related Social Sciences and Humanities research", + "topic": "LCE-32-2016" +},{ + "projectID": 656094, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101000632, + "title": "Innovative textiles – reinventing fashion", + "topic": "CE-FNR-14-2020" +},{ + "projectID": 834024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637908, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 658034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 807010, + "title": "Exploitation of IMI project results", + "topic": "IMI2-2017-11-01" +},{ + "projectID": 700952, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 686711, + "title": "Crack growth threshold analysis in TiAl alloys", + "topic": "JTI-CS2-2014-CFP01-ENG-03-04" +},{ + "projectID": 101001227, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 887042, + "title": "Development of FEM fastener parametric/adaptable sizing tool including EMC impact, and manufacturing and EMC/LSP testing of demonstrators", + "topic": "JTI-CS2-2019-CFP10-AIR-02-79" +},{ + "projectID": 655478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 767419, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 859836, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 752608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 847082, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 835813, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684116, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 696004, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2015" +},{ + "projectID": 698534, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101036036, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 884776, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702981, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 710246, + "title": "Estimating the costs of research misconduct and the socio-economic benefit of research integrity", + "topic": "GARRI-9-2015" +},{ + "projectID": 719432, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 958448, + "title": "Develop, implement and assess a circular economy oriented product information management system for complex products from cradle to cradle", + "topic": "CE-SC5-31-2020" +},{ + "projectID": 723805, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 858617, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723576, + "title": "Valorisation of waste heat in industrial systems (SPIRE PPP)", + "topic": "EE-17-2016-2017" +},{ + "projectID": 884453, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672197, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 649484, + "title": "Political challenges for Europe", + "topic": "EURO-4-2014" +},{ + "projectID": 645378, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 750195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 708434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 863671, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 868967, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021271, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 744719, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 652017, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 762442, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 662802, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 703309, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 887191, + "title": "Model the composition of bio-based residual streams and its evolution to optimise its management and processing", + "topic": "BBI-2019-SO2-R7" +},{ + "projectID": 827245, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761112, + "title": "Advanced materials and innovative design for improved functionality and aesthetics in high added value consumer goods", + "topic": "NMBP-05-2017" +},{ + "projectID": 705619, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635895, + "title": "Traffic safety analysis and integrated approach towards the safety of Vulnerable Road Users", + "topic": "MG-3.4-2014" +},{ + "projectID": 832012, + "title": "Development of an anaerobic digester prototype for aircraft use", + "topic": "JTI-CS2-2018-CfP08-AIR-03-04" +},{ + "projectID": 755251, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 721105, + "title": "Advancing the integration of Materials Modelling in Business Processes to enhance effective industrial decision making and increase competitiveness", + "topic": "NMBP-23-2016" +},{ + "projectID": 639706, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 756553, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 101003387, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 637003, + "title": "Support for the enhancement of the impact of EeB PPP projects", + "topic": "EeB-04-2014" +},{ + "projectID": 101026680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 833196, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 887648, + "title": "Apply microorganisms and/or enzymes to resolve end-of-life issues of plastics", + "topic": "BBI-2019-SO2-R3" +},{ + "projectID": 637076, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 830017, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672889, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 952852, + "title": "Improving the performance of Space surveillance and tracking (SST) at European level", + "topic": "SGA-Space-SST-2019" +},{ + "projectID": 637591, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 953152, + "title": "Safe by design, from science to regulation: multi-component nanomaterials (RIA)", + "topic": "NMBP-16-2020" +},{ + "projectID": 875022, + "title": "Supporting Joint Actions on sustainable urban accessibility and connectivity", + "topic": "MG-4-6-2019" +},{ + "projectID": 837873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101004131, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 831244, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 897046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702895, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 741360, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 805689, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 802658, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 958267, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 888909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703667, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 867397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790093, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 818120, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 641864, + "title": "Materials for electronic devices", + "topic": "SC5-12a-2014" +},{ + "projectID": 845075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692320, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 101027605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657192, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 755480, + "title": "Research and innovation on the overall management of radioactive waste other than geological disposal.", + "topic": "NFRP-7" +},{ + "projectID": 836871, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 724416, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 688221, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 827586, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762726, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 897736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744197, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 663334, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 854887, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738373, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 809670, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 675762, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 886575, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816703, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 646560, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 776745, + "title": "Raw materials policy support actions", + "topic": "SC5-15-2016-2017" +},{ + "projectID": 839351, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003391, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 723833, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 859588, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 789492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657264, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 782670, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 674820, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 672921, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 783944, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 691228, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 877470, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886997, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699122, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 672398, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 101010676, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 724586, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 716390, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 754586, + "title": "Cross-cutting support to improved knowledge on tritium management in fission and fusion facilities", + "topic": "NFRP-14" +},{ + "projectID": 684051, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 672611, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 851207, + "title": "Optimising manufacturing and system operation", + "topic": "LC-SC3-RES-14-2019" +},{ + "projectID": 825196, + "title": "Robotics - Digital Innovation Hubs (DIH)", + "topic": "DT-ICT-02-2018" +},{ + "projectID": 649493, + "title": "Societal and political engagement of young people and their perspectives on Europe", + "topic": "YOUNG-5b-2014" +},{ + "projectID": 807215, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 889249, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675999, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 790367, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 952176, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 963522, + "title": "Next generation and realisation of battery packs for BEV and PHEV", + "topic": "LC-BAT-10-2020" +},{ + "projectID": 726317, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 762568, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 691503, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 825715, + "title": "Creation of a European wide sustainable clinical research network for infectious diseases", + "topic": "SC1-HCO-08-2018" +},{ + "projectID": 723145, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 814978, + "title": "InCo flagship on reduction of transport impact on air quality", + "topic": "LC-MG-1-1-2018" +},{ + "projectID": 691404, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 101015924, + "title": "Behavioural, social and economic impacts of the outbreak response", + "topic": "SC1-PHE-CORONAVIRUS-2020-2C" +},{ + "projectID": 802631, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 945449, + "title": "Implementation research for scaling up and transfer of innovative solutions involving digital tools for people-centred care", + "topic": "SC1-DTH-13-2020" +},{ + "projectID": 740521, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 802653, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 665172, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101021775, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 732366, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 767015, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101029454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644313, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 871063, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 649439, + "title": "Resilient and sustainable economic and monetary union in Europe", + "topic": "EURO-1-2014" +},{ + "projectID": 101033469, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823854, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 649496, + "title": "Early job insecurity and labour market exclusion", + "topic": "YOUNG-1-2014" +},{ + "projectID": 861196, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 722171, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 716065, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 721297, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 731198, + "title": "Smart Cities and Communities lighthouse projects", + "topic": "SCC-1-2016-2017" +},{ + "projectID": 857518, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 643739, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 856716, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 647125, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101022831, + "title": "Industrial (Waste) Heat-to-Power conversion", + "topic": "LC-SC3-CC-9-2020" +},{ + "projectID": 956501, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 848098, + "title": "Systems approaches for the discovery of combinatorial therapies for complex disorders", + "topic": "SC1-BHC-02-2019" +},{ + "projectID": 101027987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734584, + "title": "Addressing the urgent research gaps against the Zika virus and other emerging threats in Latin America", + "topic": "SC1-PM-22-2016" +},{ + "projectID": 788516, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 804454, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 870598, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 691720, + "title": "Development of system standards for smart cities and communities solutions", + "topic": "SCC-03-2015" +},{ + "projectID": 824212, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 644424, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 963463, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 688369, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 756059, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 636202, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 679145, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 674815, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 674827, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 876812, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 757096, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101025775, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693669, + "title": "The cultural, scientific and social dimension of EU-LAC relations", + "topic": "INT-12-2015" +},{ + "projectID": 674716, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014" +},{ + "projectID": 883830, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 889332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727683, + "title": "Support for Europe’s leading Health ICT SMEs", + "topic": "SC1-HCO-10-2016" +},{ + "projectID": 654497, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 101002330, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 649997, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 674840, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 790423, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 655480, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660885, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 725187, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 744153, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 832981, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 728924, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 730998, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 717707, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 655577, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653637, + "title": "Cooperative ITS for safe, congestion-free and sustainable mobility", + "topic": "MG-3.5b-2014" +},{ + "projectID": 636177, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 864719, + "title": "Advanced High Bypass Ratio Low-Speed Composite Fan Design and Validation", + "topic": "JTI-CS2-2018-CFP09-THT-05" +},{ + "projectID": 641110, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 754881, + "title": "New Acoustic Signal Processing Methods", + "topic": "JTI-CS2-2016-CFP04-LPA-01-18" +},{ + "projectID": 646554, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 101030220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 665091, + "title": "Advanced 3D modelling for accessing and understanding European cultural assets", + "topic": "REFLECTIVE-7-2014" +},{ + "projectID": 796790, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 776465, + "title": "Cultural heritage as a driver for sustainable growth", + "topic": "SC5-21-2016-2017" +},{ + "projectID": 101027850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823903, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 690103, + "title": "Eco-innovative solutions", + "topic": "WASTE-6a-2015" +},{ + "projectID": 963646, + "title": "Next generation and realisation of battery packs for BEV and PHEV", + "topic": "LC-BAT-10-2020" +},{ + "projectID": 850626, + "title": "Optimising manufacturing and system operation", + "topic": "LC-SC3-RES-14-2019" +},{ + "projectID": 689983, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 696124, + "title": "Ensuring effective implementation of EU product efficiency legislation", + "topic": "EE-15-2015" +},{ + "projectID": 768287, + "title": "New business models for energy-efficient buildings through adaptable refurbishment solutions", + "topic": "EEB-08-2017" +},{ + "projectID": 723045, + "title": "Facilitating knowledge management, networking and coordination in the field of formulated products", + "topic": "NMBP-30-2016" +},{ + "projectID": 726320, + "title": "Health", + "topic": "Health" +},{ + "projectID": 702189, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 712281, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 750242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652629, + "title": "Preparing for the future innovative offshore economy", + "topic": "BG-05-2014" +},{ + "projectID": 695820, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2015" +},{ + "projectID": 101022315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 768636, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 656943, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 886733, + "title": "Supporting implementation of 2030+ UHBR low noise fan technology solutions through enhanced modeling capabilities", + "topic": "JTI-CS2-2019-CfP10-LPA-01-76" +},{ + "projectID": 738767, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 883033, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 670726, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 642231, + "title": "An EU near-zero waste stakeholder platform", + "topic": "WASTE-4a-2014" +},{ + "projectID": 674863, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 643774, + "title": "Global Alliance for Chronic Diseases: prevention and treatment of type 2 diabetes", + "topic": "HCO-05-2014" +},{ + "projectID": 644497, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 756269, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 853033, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 849960, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 891826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001839, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 747576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 686056, + "title": "Novel materials by design for substituting critical materials", + "topic": "NMP-23-2015" +},{ + "projectID": 701717, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 947681, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 806776, + "title": "Analysing the infectious disease burden and the use of vaccines to improve healthy years in aging populations", + "topic": "IMI2-2017-12-05" +},{ + "projectID": 759188, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 638436, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 645238, + "title": "Human-centric Digital Age", + "topic": "ICT-31-2014" +},{ + "projectID": 676858, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 867487, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885250, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 728719, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 875187, + "title": "User centric charging infrastructure", + "topic": "LC-GV-03-2019" +},{ + "projectID": 690669, + "title": "Strengthening the knowledge and capacities of local authorities", + "topic": "MG-5.4-2015" +},{ + "projectID": 848180, + "title": "Mental health in the workplace", + "topic": "SC1-BHC-22-2019" +},{ + "projectID": 955332, + "title": "Cities as climate-resilient, connected multimodal nodes for smart and clean mobility: new approaches towards demonstrating and testing innovative solutions", + "topic": "LC-MG-1-12-2020" +},{ + "projectID": 870373, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 749180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 764056, + "title": "Social Sciences and Humanities Support for the Energy Union", + "topic": "LCE-31-2016-2017" +},{ + "projectID": 818346, + "title": "Highly efficient management of soil quality and land resources", + "topic": "SFS-38-2018" +},{ + "projectID": 776332, + "title": "EGNSS awareness raising and capacity building", + "topic": "GALILEO-4-2017" +},{ + "projectID": 705944, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 664103, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 645704, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 641460, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 101033744, + "title": "Enabling next-generation of smart energy services valorising energy efficiency and flexibility at demand-side", + "topic": "LC-SC3-B4E-14-2020" +},{ + "projectID": 704978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 838513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 751277, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 665275, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101007153, + "title": "Advanced research methods and tools in support of transport/mobility researchers, planners and policy makers", + "topic": "MG-4-8-2020" +},{ + "projectID": 835042, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 843218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 741182, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 833112, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 701932, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 824651, + "title": "Science4Refugees", + "topic": "SwafS-06-2018" +},{ + "projectID": 723440, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 643708, + "title": "Global Alliance for Chronic Diseases: prevention and treatment of type 2 diabetes", + "topic": "HCO-05-2014" +},{ + "projectID": 633256, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 101005435, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 873111, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 768705, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 101007659, + "title": "Reduction of the environmental impact of aviation via optimisation of aircraft size/range and flight network", + "topic": "JTI-CS2-2020-CfP11-TE2-01-14" +},{ + "projectID": 734447, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 845958, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 671741, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 657424, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 633485, + "title": "Traffic safety analysis and integrated approach towards the safety of Vulnerable Road Users", + "topic": "MG-3.4-2014" +},{ + "projectID": 891223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 673863, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 827597, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738292, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 682317, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 807591, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 655134, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768583, + "title": "Carbon dioxide utilisation to produce added value chemicals", + "topic": "SPIRE-08-2017" +},{ + "projectID": 101005232, + "title": "Analytical and experimental characterization of aerodynamic and aeroacoustic effects of closely operating propellers for distributed propulsion wing solutions.", + "topic": "JTI-CS2-2020-CfP11-LPA-01-96" +},{ + "projectID": 640480, + "title": "International cooperation in aeronautics", + "topic": "MG-1.8-2014" +},{ + "projectID": 656774, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 957788, + "title": "DC – AC/DC hybrid grid for a modular, resilient and high RES share grid development", + "topic": "LC-SC3-ES-10-2020" +},{ + "projectID": 800048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855028, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677317, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 830860, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 653586, + "title": "Access Control", + "topic": "DS-02-2014" +},{ + "projectID": 687275, + "title": "Stimulating wider research use of Copernicus Sentinel Data", + "topic": "EO-2-2015" +},{ + "projectID": 877741, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690959, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 745865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 737301, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-02-2016" +},{ + "projectID": 800994, + "title": "Coordination and Support Action for Quantum Technologies", + "topic": "FETFLAG-02-2017" +},{ + "projectID": 769512, + "title": "Identification of gaps, barriers and needs in the aviation research", + "topic": "MG-1-5-2016-2017" +},{ + "projectID": 732078, + "title": "IoT Horizontal activities", + "topic": "IoT-02-2016" +},{ + "projectID": 101026293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 700812, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 678034, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 656687, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 892680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 945320, + "title": "Innovation for Generation II and III reactors", + "topic": "NFRP-2019-2020-04" +},{ + "projectID": 785530, + "title": "Multi-physics modelling of elementary physical phenomena applied to an innovative high temperature engine valve", + "topic": "JTI-CS2-2017-CFP06-LPA-01-33" +},{ + "projectID": 853168, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 662454, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 814961, + "title": "Human Factors in Transport Safety", + "topic": "MG-2-1-2018" +},{ + "projectID": 732489, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 692914, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 690770, + "title": "System modelling and life-cycle cost optimisation for waterborne assets", + "topic": "MG-4.3-2015" +},{ + "projectID": 876273, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738755, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 694656, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 681787, + "title": "Capitalising the full potential of online collaboration for SME innovation", + "topic": "INNOSUP-6-2015" +},{ + "projectID": 876141, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101036926, + "title": "Preventing and fighting extreme wildfires with the integration and demonstration of innovative means", + "topic": "LC-GD-1-1-2020" +},{ + "projectID": 779803, + "title": "Innovation procurement networks", + "topic": "ICT-33-2017" +},{ + "projectID": 674839, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 101034176, + "title": "Mutual learning and common tools and resources for national/regional schemes supporting early-stage innovation projects of start-ups and SMEs", + "topic": "EIC-mutuallearning-2020" +},{ + "projectID": 839650, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030367, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 860318, + "title": "Workplace innovation uptake by SMEs", + "topic": "INNOSUP-04-2019" +},{ + "projectID": 823116, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762543, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 857627, + "title": "ERA Chairs", + "topic": "WIDESPREAD-04-2019" +},{ + "projectID": 793554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795310, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 780502, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 101001200, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 706426, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 663676, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 720121, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 780755, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 683736, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 794048, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 948290, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 641606, + "title": "EGNSS applications", + "topic": "GALILEO-1-2014" +},{ + "projectID": 711437, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 739837, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 800062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 858664, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702717, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 707197, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 725546, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 739667, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 660763, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648604, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 780170, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 790320, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 798529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101004356, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 835541, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 809180, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 727493, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 795369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 667932, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 782178, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 783850, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 894403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003298, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 866454, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 761808, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 101008231, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 735574, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 656811, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 729463, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 796086, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834709, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 727626, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 656337, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730011, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2016" +},{ + "projectID": 706924, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 737183, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 730141, + "title": "Downstream applications", + "topic": "EO-1-2016" +},{ + "projectID": 101027303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101016411, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 759764, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 861998, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 868479, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776487, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 823966, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101030364, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 781027, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 749591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645642, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 740123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 784040, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 692977, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 708068, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 857510, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 691071, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 735008, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 751692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 739570, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 870353, + "title": "Copernicus evolution – Research activities in support of cross-cutting applications between Copernicus services", + "topic": "LC-SPACE-04-EO-2019" +},{ + "projectID": 844633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860370, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101017861, + "title": "Environmental Intelligence", + "topic": "FETPROACT-EIC-08-2020" +},{ + "projectID": 747046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966837, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 673563, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 855915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 641518, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 783989, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 842560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 766456, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 855005, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 774571, + "title": "Robotics Advances for Precision Farming", + "topic": "SFS-05-2017" +},{ + "projectID": 836133, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735196, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 798222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837201, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659092, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 892463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 719968, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 657452, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639828, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 785799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 661528, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 752550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772854, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 713683, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 793650, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 821871, + "title": "Space outreach and education", + "topic": "DT-SPACE-08-BIZ-2018" +},{ + "projectID": 843901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 851043, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 700670, + "title": "Conflict prevention and peace building topic 2: Training curricula for Conflict Prevention and Peace Building personnel", + "topic": "BES-13-2015" +},{ + "projectID": 648837, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 770151, + "title": "Contemporary histories of Europe in artistic and creative practices", + "topic": "CULT-COOP-04-2017" +},{ + "projectID": 866479, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 796282, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 750706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 805017, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 753562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724231, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 661385, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833691, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 856478, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 646107, + "title": "Practical experience and facilitating combined funding for large-scale RDI initiatives", + "topic": "NMP-37-2014" +},{ + "projectID": 101033296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707225, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635898, + "title": "Reducing impacts and costs of freight and service trips in urban areas", + "topic": "MG-5.2-2014" +},{ + "projectID": 101004653, + "title": "Enhancing access and uptake of education to reverse inequalities", + "topic": "TRANSFORMATIONS-22-2020" +},{ + "projectID": 655859, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799195, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898740, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695256, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 792006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657482, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 802645, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 844096, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702991, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 645845, + "title": "ICT-enabled open government", + "topic": "INSO-1-2014" +},{ + "projectID": 764908, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 734733, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 897159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101033426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750076, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 847136, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 740931, + "title": "Towards reducing the cost of technologies in land border security applications", + "topic": "SEC-14-BES-2016" +},{ + "projectID": 884951, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 701636, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101024885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 763735, + "title": "Piloting demand-driven collaborative innovation models in Europe", + "topic": "CO-CREATION-03-2016" +},{ + "projectID": 816279, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101020966, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 761656, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 859887, + "title": "Support for dissemination events in the field of Transport Research", + "topic": "MG-4-4-2018-2019" +},{ + "projectID": 876192, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691755, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 822601, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 713279, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 101030824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647737, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 890965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693388, + "title": "Lifelong learning for young adults: better policies for growth and inclusion in Europe", + "topic": "YOUNG-3-2015" +},{ + "projectID": 851352, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 683685, + "title": "ICT50", + "topic": "ICT50" +},{ + "projectID": 649860, + "title": "Public procurement of innovative sustainable energy solutions", + "topic": "EE-08-2014" +},{ + "projectID": 770464, + "title": "Cultural literacy of young generations in Europe", + "topic": "CULT-COOP-03-2017" +},{ + "projectID": 681880, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 659671, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 640580, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 894303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 653753, + "title": "Ethical/Societal Dimension topic 2: Better understanding the links between culture, risk perception and disaster management", + "topic": "DRS-21-2014" +},{ + "projectID": 822766, + "title": "Cities as a platform for citizen-driven innovation", + "topic": "TRANSFORMATIONS-05-2018" +},{ + "projectID": 844176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 886369, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703495, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 727124, + "title": "Understanding the transformation of European public administrations", + "topic": "CULT-COOP-11-2016-2017" +},{ + "projectID": 886578, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871177, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 870338, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 770591, + "title": "Understanding the transformation of European public administrations", + "topic": "CULT-COOP-11-2016-2017" +},{ + "projectID": 711824, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015" +},{ + "projectID": 693729, + "title": "ICT-enabled open government", + "topic": "INSO-1-2015" +},{ + "projectID": 722934, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 747592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 772264, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101028769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 956780, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 845420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101033051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 740257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734928, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101029946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 945936, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025665, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101030602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 693402, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 785934, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 737460, + "title": "Co-creation between public administrations: once-only principle", + "topic": "CO-CREATION-05-2016" +},{ + "projectID": 843645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 678456, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 729165, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 653704, + "title": "Privacy", + "topic": "DS-01-2014" +},{ + "projectID": 825040, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 827700, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 787068, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 101036563, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 690900, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 822717, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 952303, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 743554, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 645782, + "title": "Towards joint programming under Horizon 2020", + "topic": "INSO-7-2014" +},{ + "projectID": 692868, + "title": "Meeting new societal needs by using emerging technologies in the public sector", + "topic": "EURO-6-2015" +},{ + "projectID": 700321, + "title": "Trust eServices", + "topic": "DS-05-2015" +},{ + "projectID": 645860, + "title": "ICT-enabled open government", + "topic": "INSO-1-2014" +},{ + "projectID": 693537, + "title": "The European Union and integration challenges in the Balkans", + "topic": "INT-10-2015" +},{ + "projectID": 769608, + "title": "Policy-development in the age of big data: data-driven policy-making, policy-modelling and policy-implementation", + "topic": "CO-CREATION-06-2017" +},{ + "projectID": 780237, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 875588, + "title": "An inclusive digitally interconnected transport system meeting citizens' needs", + "topic": "MG-4-5-2019" +},{ + "projectID": 894327, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 808609, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 641495, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 763641, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 684546, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 745002, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 724299, + "title": "SPREADING", + "topic": "SPREADING" +},{ + "projectID": 767609, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 649660, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2014" +},{ + "projectID": 693092, + "title": "Innovative schemes for open innovation and science 2.0", + "topic": "INSO-4-2015" +},{ + "projectID": 750378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895260, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 820660, + "title": "Building information modelling adapted to efficient renovation (RIA)", + "topic": "LC-EEB-02-2018" +},{ + "projectID": 101022965, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 775984, + "title": "WIRE VIII Conference", + "topic": "IBA-SEWP-WIRE-8-2017" +},{ + "projectID": 644666, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 959879, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 776893, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2016-2017" +},{ + "projectID": 649819, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2014" +},{ + "projectID": 755919, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 804252, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 687920, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 769623, + "title": "Policy-development in the age of big data: data-driven policy-making, policy-modelling and policy-implementation", + "topic": "CO-CREATION-06-2017" +},{ + "projectID": 687959, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 645833, + "title": "ICT-enabled open government", + "topic": "INSO-1-2014" +},{ + "projectID": 756698, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 690658, + "title": "Smart governance, network resilience and streamlined delivery of infrastructure innovation", + "topic": "MG-8.4a-2015" +},{ + "projectID": 740712, + "title": "Cyber Security for SMEs, local public administration and Individuals", + "topic": "DS-02-2016" +},{ + "projectID": 711949, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 653642, + "title": "Privacy", + "topic": "DS-01-2014" +},{ + "projectID": 769975, + "title": "Applied co-creation to deliver public services", + "topic": "CO-CREATION-04-2017" +},{ + "projectID": 727625, + "title": "Coordinated action to support the recognition of Silver Economy opportunities arising from demographic change", + "topic": "SC1-HCO-11-2016" +},{ + "projectID": 870697, + "title": "Pilot on using the European cloud infrastructure for public administrations", + "topic": "DT-GOVERNANCE-12-2019-2020" +},{ + "projectID": 762975, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 696008, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2015" +},{ + "projectID": 740723, + "title": "Cyber Security for SMEs, local public administration and Individuals", + "topic": "DS-02-2016" +},{ + "projectID": 101037080, + "title": "Building and renovating in an energy and resource efficient way", + "topic": "LC-GD-4-1-2020" +},{ + "projectID": 693849, + "title": "Meeting new societal needs by using emerging technologies in the public sector", + "topic": "EURO-6-2015" +},{ + "projectID": 639021, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 687818, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 731845, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 693171, + "title": "ICT-enabled open government", + "topic": "INSO-1-2015" +},{ + "projectID": 696979, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 707539, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 696077, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 870930, + "title": "Addressing the challenge of migrant integration through ICT-enabled solutions", + "topic": "DT-MIGRATION-06-2018-2019" +},{ + "projectID": 786886, + "title": "Next generation of information systems to support EU external policies", + "topic": "SEC-13-BES-2017" +},{ + "projectID": 891061, + "title": "ATM Role in Intermodal Transport", + "topic": "SESAR-ER4-10-2019" +},{ + "projectID": 101006696, + "title": "Cities as climate-resilient, connected multimodal nodes for smart and clean mobility: new approaches towards demonstrating and testing innovative solutions", + "topic": "LC-MG-1-12-2020" +},{ + "projectID": 893375, + "title": "Control of IFR RPAS in the TMA", + "topic": "SESAR-ER4-28-2019" +},{ + "projectID": 783189, + "title": "ATM Operations, Architecture, Performance and Validation", + "topic": "SESAR-ER3-06-2016" +},{ + "projectID": 783170, + "title": "Solutions for General Aviation and Rotorcraft", + "topic": "SESAR-VLD1-09-2016" +},{ + "projectID": 101017677, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 890898, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 721065, + "title": "Innovative and sustainable materials solutions for the substitution of critical raw materials in the electric power system", + "topic": "NMBP-03-2016" +},{ + "projectID": 101032307, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101033008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825746, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 874769, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 786381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748759, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 964590, + "title": "Coordinating and supporting research on the human microbiome in Europe and beyond", + "topic": "SC1-HCO-17-2020" +},{ + "projectID": 735533, + "title": "Development of innovative hydrogen purification technology based on membrane systems", + "topic": "FCH-03-1-2016" +},{ + "projectID": 735582, + "title": "Large scale validation of fuel cell bus fleets", + "topic": "FCH-01-9-2016" +},{ + "projectID": 671461, + "title": "Pre-normative research on vented deflagrations in containers and enclosures for hydrogen energy applications", + "topic": "FCH-04.3-2014" +},{ + "projectID": 676045, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 810172, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 779366, + "title": "Towards next generation of PEMFC: Non-PGM catalysts", + "topic": "FCH-01-2-2017" +},{ + "projectID": 790139, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 664536, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 844093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836429, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 826339, + "title": "Developing Fuel Cell applications for port/harbour ecosystems", + "topic": "FCH-03-1-2018" +},{ + "projectID": 101000021, + "title": "Support to the Vice-Chairs", + "topic": "IBA-ERC-VPRES-SUP-20" +},{ + "projectID": 715900, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 675341, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101002564, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 945405, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 748752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 664410, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 700667, + "title": "Development of cost effective manufacturing technologies for key components or fuel cell systems", + "topic": "FCH-02.6-2015" +},{ + "projectID": 866581, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 669830, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 817589, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 739593, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 819454, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 952914, + "title": "Multi-omics for genotype-phenotype associations (RIA)", + "topic": "BIOTEC-07-2020" +},{ + "projectID": 817923, + "title": "Agri-Aqua Labs", + "topic": "SFS-30-2018-2019-2020" +},{ + "projectID": 101026763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637529, + "title": "European Research Council", + "topic": "ERC" +},{ + "projectID": 842490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101007219, + "title": "Fuel cell for prime power in data-centres", + "topic": "FCH-02-9-2020" +},{ + "projectID": 850850, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 700564, + "title": "Development of cost effective manufacturing technologies for key components or fuel cell systems", + "topic": "FCH-02.6-2015" +},{ + "projectID": 875864, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861870, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 878292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101006667, + "title": "Flexi-fuel stationary SOFC", + "topic": "FCH-02-4-2020" +},{ + "projectID": 728225, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 671403, + "title": "Innovative fuel cell systems at intermediate power range for distributed combined heat and power generation", + "topic": "FCH-02.5-2014" +},{ + "projectID": 771602, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 796272, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655811, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 640988, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101006774, + "title": "Demonstration of FC Coaches for regional passenger transport", + "topic": "FCH-01-5-2020" +},{ + "projectID": 723368, + "title": "Reducing energy consumption and environmental impact of aviation", + "topic": "MG-1.1-2016" +},{ + "projectID": 826215, + "title": "Demonstration of Fuel Cell applications for mid-size passenger ships or inland freight", + "topic": "FCH-01-2-2018" +},{ + "projectID": 788921, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 638884, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101007715, + "title": "Scalability and limitations of Hybrid Electric concepts up to large commercial aircraft", + "topic": "JTI-CS2-2020-CFP11-THT-14" +},{ + "projectID": 646794, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 866537, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 734548, + "title": "Addressing the urgent research gaps against the Zika virus and other emerging threats in Latin America", + "topic": "SC1-PM-22-2016" +},{ + "projectID": 635290, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 788042, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840258, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 662960, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 681719, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101024443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 950278, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101006641, + "title": "Durability-Lifetime of stacks for Heavy Duty trucks", + "topic": "FCH-01-2-2020" +},{ + "projectID": 774912, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 875081, + "title": "Development of highly efficient and flexible mini CHP fuel cell system based on HTPEMFCs", + "topic": "FCH-02-7-2019" +},{ + "projectID": 671481, + "title": "Research in electrolysis for cost effective hydrogen production", + "topic": "FCH-02.1-2014" +},{ + "projectID": 779478, + "title": "Game changer Water Electrolysers", + "topic": "FCH-02-1-2017" +},{ + "projectID": 874577, + "title": "New materials, architectures and manufacturing processes for Solid Oxide Cells", + "topic": "FCH-02-6-2019" +},{ + "projectID": 671473, + "title": "Significant improvement of installation and service for fuel cell systems by Design-to-Service", + "topic": "FCH-02.9-2014" +},{ + "projectID": 836377, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101011031, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 734796, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 665046, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 654836, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 875025, + "title": "Towards a better understanding of charge, mass and heat transports in new generation PEMFC MEA for automotive applications", + "topic": "FCH-01-4-2019" +},{ + "projectID": 733099, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 892856, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 634402, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 866250, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101023763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 675395, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 778247, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 760067, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 742804, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 661019, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661579, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 952541, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 773026, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101008503, + "title": "Strengthening the human capital of research infrastructures", + "topic": "INFRASUPP-02-2020" +},{ + "projectID": 875047, + "title": "Enhancement of durability and reliability of stationary PEM and SOFC systems by implementation and integration of advanced diagnostic and control tools", + "topic": "FCH-02-8-2019" +},{ + "projectID": 700092, + "title": "Hydrogen territories", + "topic": "FCH-03.2-2015" +},{ + "projectID": 684516, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 671950, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 945810, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 964537, + "title": "Advancing the safety assessment of chemicals without the use of animal testing", + "topic": "SC1-BHC-11-2020" +},{ + "projectID": 708111, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700190, + "title": "Recycling and Dismantling Strategies for FCH Technologies", + "topic": "FCH-04.1-2015" +},{ + "projectID": 859992, + "title": "Moving freight by Water: Sustainable Infrastructure and Innovative Vessels", + "topic": "MG-2-6-2019" +},{ + "projectID": 698374, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015" +},{ + "projectID": 766053, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101007968, + "title": "Sustainability of Hybrid-Electric Aircraft System Architectures", + "topic": "JTI-CS2-2020-CFP11-THT-13" +},{ + "projectID": 875087, + "title": "Cyber-physical platform for hybrid Fuel Cell systems", + "topic": "FCH-01-3-2019" +},{ + "projectID": 101031333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838408, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 787611, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101026717, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 810224, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 875155, + "title": "Towards a better understanding of charge, mass and heat transports in new generation PEMFC MEA for automotive applications", + "topic": "FCH-01-4-2019" +},{ + "projectID": 790379, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 748497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645648, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 810296, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 817998, + "title": "Agri-Aqua Labs", + "topic": "SFS-30-2018-2019-2020" +},{ + "projectID": 864027, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 694236, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101004806, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 668031, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 767678, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 947655, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 748574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007108, + "title": "Demonstration of large-scale co-electrolysis for the Industrial Power-to-X market", + "topic": "FCH-02-8-2020" +},{ + "projectID": 751531, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700101, + "title": "Diagnostics and control for increased fuel cell system lifetime in automotive applications", + "topic": "FCH-01.2-2015" +},{ + "projectID": 707096, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 826234, + "title": "Efficient and cost-optimised biogas-based co-generation by high-temperature fuel cells", + "topic": "FCH-02-7-2018" +},{ + "projectID": 672881, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 101027791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825694, + "title": "Exploiting research outcomes and application potential of the human microbiome for personalised prediction, prevention and treatment of disease", + "topic": "SC1-BHC-03-2018" +},{ + "projectID": 899245, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 779589, + "title": "Validation of Fuel Cell Trucks for the Collect of Urban Wastes", + "topic": "FCH-01-7-2017" +},{ + "projectID": 875148, + "title": "Continuous supply of green or low carbon H2 and CHP via Solid Oxide Cell based Polygeneration", + "topic": "FCH-02-3-2019" +},{ + "projectID": 652411, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 817729, + "title": "Microbiome applications for sustainable food systems", + "topic": "LC-SFS-03-2018" +},{ + "projectID": 692298, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 675737, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 948088, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 857996, + "title": "Support to the Vice-Chairs", + "topic": "IBA-ERC-VPRES-SUP-19" +},{ + "projectID": 654156, + "title": "Strengthening the human capital of research infrastructures", + "topic": "INFRASUPP-3-2014" +},{ + "projectID": 703432, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661145, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 704903, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 671463, + "title": "Development of cost effective and reliable hydrogen refuelling station components and systems for fuel cell vehicles", + "topic": "FCH-01.5-2014" +},{ + "projectID": 875156, + "title": "Scaling up and demonstration of a multi-MW Fuel Cell system for shipping", + "topic": "FCH-01-2-2019" +},{ + "projectID": 779577, + "title": "Reversible Solid Oxide Electrolyser (rSOC) for resilient energy systems", + "topic": "FCH-02-3-2017" +},{ + "projectID": 671438, + "title": "Large scale demonstration of refuelling infrastructure for road vehicles", + "topic": "FCH-01.7-2014" +},{ + "projectID": 847543, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 826352, + "title": "Hydrogen carriers for stationary storage of excess renewable energy", + "topic": "FCH-02-5-2018" +},{ + "projectID": 802989, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101033075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 784865, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 779576, + "title": "Development of fuel cell system technologies for achieving competitive solutions for aeronautical applications", + "topic": "FCH-01-1-2017" +},{ + "projectID": 875089, + "title": "Training of Responders", + "topic": "FCH-04-1-2019" +},{ + "projectID": 737954, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 724610, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101006633, + "title": "Extending the use cases for FC trains through innovative designs and streamlined administrative framework", + "topic": "FCH-01-7-2020" +},{ + "projectID": 736290, + "title": "Manufacturing technologies for PEMFC stack components and stacks", + "topic": "FCH-01-1-2016" +},{ + "projectID": 790744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 763909, + "title": "New knowledge and technologies", + "topic": "LCE-06-2017" +},{ + "projectID": 836693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779591, + "title": "Step-change in manufacturing of Fuel Cell Stack Components", + "topic": "FCH-02-8-2017" +},{ + "projectID": 739732, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101031819, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032072, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 761590, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 949012, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 951949, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 757082, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 659491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 883849, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 802769, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 826062, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662750, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 708288, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 816085, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 858504, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660721, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 735969, + "title": "Development of industrialization-ready PEMFC systems and system components", + "topic": "FCH-01-4-2016" +},{ + "projectID": 101034926, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 966654, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 655170, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 700786, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 826097, + "title": "Next generation automotive MEA development", + "topic": "FCH-01-5-2018" +},{ + "projectID": 747889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700127, + "title": "Low cost and durable PEMFCs for transport applications", + "topic": "FCH-01.1-2015" +},{ + "projectID": 731449, + "title": "MW or multi-MW demonstration of stationary fuel cells", + "topic": "FCH-02-11-2016" +},{ + "projectID": 662683, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 101017701, + "title": "U-space capabilities and services to enable Urban Air Mobility", + "topic": "SESAR-VLD2-03-2020" +},{ + "projectID": 671426, + "title": "Engineering studies for large scale bus refuelling", + "topic": "FCH-01.6-2014" +},{ + "projectID": 654006, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 671465, + "title": "Cell and stack components, stack and system manufacturing technologies and quality assurance", + "topic": "FCH-01.2-2014" +},{ + "projectID": 893919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 646186, + "title": "Storage of energy produced by decentralised sources", + "topic": "NMP-13-2014" +},{ + "projectID": 101007226, + "title": "PNR on hydrogen-based fuels solutions for passenger ships", + "topic": "FCH-04-2-2020" +},{ + "projectID": 650937, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 825027, + "title": "Accelerated Stress Testing (AST) protocols for Solid Oxide Cells (SOC)", + "topic": "FCH-04-3-2018" +},{ + "projectID": 779606, + "title": "Transportable FC gensets for temporary power supply in urban applications", + "topic": "FCH-02-10-2017" +},{ + "projectID": 875573, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 653514, + "title": "Optimised and systematic energy management in electric vehicles", + "topic": "GV-2-2014" +},{ + "projectID": 101032423, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 780004, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 826204, + "title": "Game changer fuel cell stack for automotive applications", + "topic": "FCH-01-6-2018" +},{ + "projectID": 101036996, + "title": "Green airports and ports as multimodal hubs for sustainable and smart mobility", + "topic": "LC-GD-5-1-2020" +},{ + "projectID": 700339, + "title": "Large scale demonstration of µCHP fuel cells", + "topic": "FCH-02.9-2015" +},{ + "projectID": 654915, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660064, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 735160, + "title": "Development of cost effective manufacturing technologies for key components or fuel cell systems for industrial applications", + "topic": "FCH-02-6-2016" +},{ + "projectID": 736648, + "title": "Novel education and training tools", + "topic": "FCH-04-1-2016" +},{ + "projectID": 860251, + "title": "Retrofit Solutions and Next Generation Propulsion for Waterborne Transport", + "topic": "LC-MG-1-8-2019" +},{ + "projectID": 101023266, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 861647, + "title": "Retrofit Solutions and Next Generation Propulsion for Waterborne Transport", + "topic": "LC-MG-1-8-2019" +},{ + "projectID": 823620, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700266, + "title": "Development of cost effective manufacturing technologies for key components or fuel cell systems", + "topic": "FCH-02.6-2015" +},{ + "projectID": 101001346, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 731224, + "title": "European Common Research and Innovation Agendas (ECRIAs) in support of the implementation of the SET Action Plan", + "topic": "LCE-33-2016" +},{ + "projectID": 659270, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 735367, + "title": "PEMFC system manufacturing technologies and quality assurance", + "topic": "FCH-01-3-2016" +},{ + "projectID": 949807, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 774512, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 779475, + "title": "Limiting the impact of contaminants originating from the hydrogen supply chain", + "topic": "FCH-04-1-2017" +},{ + "projectID": 836347, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654216, + "title": "Sustainable Industry Low Carbon II", + "topic": "SILC-II-2014" +},{ + "projectID": 875123, + "title": "Multi megawatt high-temperature electrolyser for valorisation as energy vector in energy intensive industry", + "topic": "FCH-02-2-2019" +},{ + "projectID": 779469, + "title": "Highly flexible electrolysers balancing the energy output inside the fence of a wind park", + "topic": "FCH-02-4-2017" +},{ + "projectID": 641073, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 826246, + "title": "Strengthening public acceptance and awareness of FCH-technologies by educating pupils at schools", + "topic": "FCH-04-4-2018" +},{ + "projectID": 671486, + "title": "Stationary fuel cell system diagnostics: development of online monitoring and diagnostics systems for reliable and durable fuel cell system operation", + "topic": "FCH-02.3-2014" +},{ + "projectID": 951880, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 671384, + "title": "Demonstrating the feasibility of central large scale electrolysers in providing grid services and hydrogen distribution and supply to multiple high value markets", + "topic": "FCH-02.10-2014" +},{ + "projectID": 824953, + "title": "Robust, efficient long term remote power supply", + "topic": "FCH-02-3-2018" +},{ + "projectID": 779537, + "title": "Development of next-generation SOFC stack for small stationary applications", + "topic": "FCH-02-9-2017" +},{ + "projectID": 779565, + "title": "Definition of Accelerated Stress Testing (AST) protocols deduced from understanding of degradation mechanisms of aged stack components in Fuel Cell systems", + "topic": "FCH-04-5-2017" +},{ + "projectID": 769638, + "title": "Future research needs and priorities in the area of transport", + "topic": "MG-8-7-2017" +},{ + "projectID": 735717, + "title": "Develop new complementary technologies for achieving competitive solutions for marine applications", + "topic": "FCH-01-5-2016" +},{ + "projectID": 862482, + "title": "Materials for non-battery based energy storage (RIA)", + "topic": "LC-NMBP-29-2019" +},{ + "projectID": 779644, + "title": "Improvement of compressed storage systems in the perspective of high volume automotive application", + "topic": "FCH-01-3-2017" +},{ + "projectID": 899066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 880644, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671470, + "title": "Large scale fuel cell power plant demonstration in industrial/commercial market segments", + "topic": "FCH-02.11-2014" +},{ + "projectID": 807097, + "title": "Large Passengers Aircraft", + "topic": "CS2-GAM-2018-LPA" +},{ + "projectID": 826312, + "title": "New biotechnologies for environmental remediation (RIA)", + "topic": "CE-BIOTEC-04-2018" +},{ + "projectID": 739940, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 779563, + "title": "Large scale demonstration in preparation for a wider roll-out of fuel cell bus fleets (FCB) including new cities – Phase two", + "topic": "FCH-01-5-2017" +},{ + "projectID": 859655, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 682444, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 769417, + "title": "Complex and value-added specialised vessels", + "topic": "MG-2.4-2017" +},{ + "projectID": 690917, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 725657, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 735692, + "title": "Co-generation of hydrogen and electricity with high-temperature fuel cells", + "topic": "FCH-02-4-2016" +},{ + "projectID": 101007182, + "title": "Development of hydrogen tanks for electric vehicle architectures", + "topic": "FCH-01-1-2020" +},{ + "projectID": 779481, + "title": "Validation and demonstration of commercial-scale fuel cell core systems within a power range of 10-100kW for selected markets/applications", + "topic": "FCH-02-11-2017" +},{ + "projectID": 702048, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 946903, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674137, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 735606, + "title": "Manufacturing technologies for PEMFC stack components and stacks", + "topic": "FCH-01-1-2016" +},{ + "projectID": 778307, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 966725, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101007170, + "title": "Durability-Lifetime of stacks for Heavy Duty trucks", + "topic": "FCH-01-2-2020" +},{ + "projectID": 772286, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 854452, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671457, + "title": "Develop strategies to raise public awareness of fuel cell and hydrogen technologies", + "topic": "FCH-04.2-2014" +},{ + "projectID": 898486, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681146, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 763365, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 736122, + "title": "Development of innovative hydrogen compressor technology for small scale decentralized applications for hydrogen refuelling or storage", + "topic": "FCH-01-8-2016" +},{ + "projectID": 826247, + "title": "Fuel cell systems for the propulsion of aerial passenger vehicle", + "topic": "FCH-01-4-2018" +},{ + "projectID": 779430, + "title": "Development of flexible large fuel cell power plants for grid support", + "topic": "FCH-02-7-2017" +},{ + "projectID": 659306, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875564, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 869580, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 636984, + "title": "Manufacturing of prefabricated modules for renovation of building", + "topic": "EE-01-2014" +},{ + "projectID": 832259, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730790, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 691876, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2015" +},{ + "projectID": 768739, + "title": "Bringing to market more energy efficient and integrated data centres", + "topic": "EE-20-2017" +},{ + "projectID": 101036836, + "title": "Accelerating the green transition and energy access Partnership with Africa", + "topic": "LC-GD-2-3-2020" +},{ + "projectID": 785450, + "title": "Development of autonomous, wireless, smart and low cost current sensor for monitoring of electrical lines", + "topic": "JTI-CS2-2017-CFP06-SYS-02-34" +},{ + "projectID": 821339, + "title": "Thermal conductive coating providing self-limitation of heating power at a selected temperature level", + "topic": "JTI-CS2-2017-CfP07-AIR-02-55" +},{ + "projectID": 723747, + "title": "Supporting accelerated and cost-effective deep renovation of buildings through Public Private Partnership (EeB PPP)", + "topic": "EE-10-2016" +},{ + "projectID": 844924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 651505, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 695863, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2015" +},{ + "projectID": 824300, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 892054, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 686783, + "title": "Development of MODELICA libraries for ECS and thermal management architectures", + "topic": "JTI-CS2-2014-CFP01-SYS-02-07" +},{ + "projectID": 671553, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 754148, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 785018, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 831912, + "title": "Innovative RTM tooling for CFRP primary structural parts", + "topic": "JTI-CS2-2018-CfP08-SYS-02-50" +},{ + "projectID": 834527, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733732, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 809520, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 782142, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 723803, + "title": "Industrial furnace design addressing energy efficiency in new and existing furnaces", + "topic": "SPIRE-04-2016" +},{ + "projectID": 736217, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 637261, + "title": "Adaptable envelopes integrated in building refurbishment projects", + "topic": "EeB-02-2014" +},{ + "projectID": 857811, + "title": "Combining Renewable Technologies for a Renewable District Heating and/or Cooling System", + "topic": "LC-SC3-RES-8-2019" +},{ + "projectID": 652124, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 811349, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745594, + "title": "Development and roll-out of innovative energy efficiency services", + "topic": "EE-25-2016" +},{ + "projectID": 784050, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 812242, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768567, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 847606, + "title": "Encouraging innovation in nuclear safety for the benefit of European citizen", + "topic": "NFRP-2018-10" +},{ + "projectID": 875637, + "title": "Advanced Redox Flow Batteries for stationary energy storage", + "topic": "LC-BAT-4-2019" +},{ + "projectID": 696098, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2015" +},{ + "projectID": 672278, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 723716, + "title": "Socio-economic research on consumer's behaviour related to energy efficiency", + "topic": "EE-08-2016" +},{ + "projectID": 832008, + "title": "Development and Optimization of Bonding Assembly Technology for a Composite Material Wingbox", + "topic": "JTI-CS2-2018-CfP08-AIR-02-61" +},{ + "projectID": 101033708, + "title": "Aggregation - Project Development Assistance", + "topic": "LC-SC3-B4E-13-2020" +},{ + "projectID": 684792, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 761348, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 680529, + "title": "New tools and methodologies to reduce the gap between predicted and actual energy performances at the level of buildings and blocks of buildings", + "topic": "EeB-07-2015" +},{ + "projectID": 724982, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101002179, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 649820, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2014" +},{ + "projectID": 691679, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2015" +},{ + "projectID": 649796, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2014" +},{ + "projectID": 664047, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 785446, + "title": "Development of innovative methods and tooling for machining of slender shafts", + "topic": "JTI-CS2-2017-CFP06-ENG-01-18" +},{ + "projectID": 633477, + "title": "Manufacturing of prefabricated modules for renovation of building", + "topic": "EE-01-2014" +},{ + "projectID": 744472, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 867445, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 729874, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 770143, + "title": "Next generation electric drivetrains for fully electric vehicles, focusing on high efficiency and low cost", + "topic": "GV-04-2017" +},{ + "projectID": 894240, + "title": "Upgrading smartness of existing buildings through innovations for legacy equipment", + "topic": "LC-SC3-EE-4-2019-2020" +},{ + "projectID": 723636, + "title": "Models and tools for heating and cooling mapping and planning", + "topic": "EE-05-2016" +},{ + "projectID": 826073, + "title": "Technical solutions for the next generation of TCMS", + "topic": "S2R-OC-IP1-01-2018" +},{ + "projectID": 717376, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101037075, + "title": "Building and renovating in an energy and resource efficient way", + "topic": "LC-GD-4-1-2020" +},{ + "projectID": 855554, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 876320, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687242, + "title": "Independent access to space", + "topic": "COMPET-02-2015" +},{ + "projectID": 672013, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 745267, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 847052, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 738072, + "title": "High Speed HVDC Generator/Motor", + "topic": "JTI-CS2-2016-CFP03-FRC-01-08" +},{ + "projectID": 714039, + "title": "Development and demonstration of materials and manufacturing process for ultra high reliability electric Anti-ice/De-ice thermal layers for high strain civil rotor blades and airframe sections of tiltrotor", + "topic": "JTI-CS2-2015-CFP02-FRC-01-01" +},{ + "projectID": 768397, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 946688, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781060, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 806817, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 958809, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 886446, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816524, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719575, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 735869, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 769989, + "title": "Next generation electric drivetrains for fully electric vehicles, focusing on high efficiency and low cost", + "topic": "GV-04-2017" +},{ + "projectID": 889059, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743701, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 743470, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 784966, + "title": "Improving the performance of inefficient district heating networks", + "topic": "EE-02-2017" +},{ + "projectID": 820553, + "title": "Building information modelling adapted to efficient renovation (RIA)", + "topic": "LC-EEB-02-2018" +},{ + "projectID": 771078, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 821301, + "title": "Super hydrophobic and erosion resistant coating for turbine scroll and downstream pipe", + "topic": "JTI-CS2-2017-CfP07-SYS-03-15" +},{ + "projectID": 734273, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 806842, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 754177, + "title": "Cost reduction of new Nearly Zero-Energy buildings", + "topic": "EE-13-2016" +},{ + "projectID": 754336, + "title": "Bird strike - Erosion resistant and fast maintainable windshields", + "topic": "JTI-CS2-2016-CFP04-FRC-02-16" +},{ + "projectID": 766555, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 710440, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 684882, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 680447, + "title": "Innovative design tools for refurbishing of buildings at district level", + "topic": "EeB-05-2015" +},{ + "projectID": 778106, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 646578, + "title": "Smart Cities and Communities solutions integrating energy, transport, ICT sectors through lighthouse (large scale demonstration - first of the kind) projects", + "topic": "SCC-01-2014" +},{ + "projectID": 807368, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 736247, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 728284, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 821375, + "title": "Pulsating Heat Pipe (PHP) modelisation & characterisation", + "topic": "JTI-CS2-2017-CfP07-LPA-01-43" +},{ + "projectID": 768738, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 864537, + "title": "Flexibility and retail market options for the distribution grid", + "topic": "LC-SC3-ES-1-2019" +},{ + "projectID": 688564, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 854403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649720, + "title": "Public procurement of innovative sustainable energy solutions", + "topic": "EE-08-2014" +},{ + "projectID": 847087, + "title": "The role of consumers in changing the market through informed decision and collective actions", + "topic": "LC-SC3-EC-1-2018-2019-2020" +},{ + "projectID": 729699, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 666841, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 785455, + "title": "Aerothermal characterization in the engine compartment", + "topic": "JTI-CS2-2017-CFP06-ENG-01-21" +},{ + "projectID": 752591, + "title": "Effective implementation of EU product efficiency legislation", + "topic": "EE-16-2016-2017" +},{ + "projectID": 738160, + "title": "Integrated air-oil cooling system", + "topic": "JTI-CS2-2016-CFP03-ENG-01-09" +},{ + "projectID": 808608, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 958345, + "title": "Smart Operation of Proactive Residential Buildings (IA)", + "topic": "LC-EEB-07-2020" +},{ + "projectID": 659749, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 644453, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 835778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 778788, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 755556, + "title": "Innovative cooling system for embedded power electronics", + "topic": "JTI-CS2-2016-CFP04-SYS-02-25" +},{ + "projectID": 824335, + "title": "Integrated, brand-independent architectures, components and systems for next generation electrified vehicles optimised for the infrastructure", + "topic": "LC-GV-01-2018" +},{ + "projectID": 851541, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 775576, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 809174, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 886615, + "title": "Loop Heat Pipe development for severe environment", + "topic": "JTI-CS2-2019-CfP10-LPA-01-87" +},{ + "projectID": 683725, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 723596, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 811418, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649753, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2014" +},{ + "projectID": 662453, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 687361, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 957440, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 649829, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2014" +},{ + "projectID": 887054, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653288, + "title": "Optimised and systematic energy management in electric vehicles", + "topic": "GV-2-2014" +},{ + "projectID": 718772, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 770054, + "title": "Physical integration of hybrid and electric vehicle batteries at pack level aiming at increased energy density and efficiency", + "topic": "GV-06-2017" +},{ + "projectID": 768600, + "title": "Behavioural change toward energy efficiency through ICT", + "topic": "EE-07-2016-2017" +},{ + "projectID": 768292, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 652200, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 831851, + "title": "Composite mould tool based on 3D printing", + "topic": "JTI-CS2-2018-CfP08-AIR-01-37" +},{ + "projectID": 760443, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 684347, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 731231, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 636063, + "title": "Development of new self-inspection techniques and quality check methodologies for efficient construction processes", + "topic": "EeB-03-2014" +},{ + "projectID": 680441, + "title": "Buildings design for new highly energy performing buildings", + "topic": "EE-02-2015" +},{ + "projectID": 101014935, + "title": "Demonstrators for the next generation of traction systems, smart maintenance, virtual validation and eco-friendly HVAC, and Technical research on battery and hydrogen powered regional trains (BEMU/ HMU) (IP1/IP3)", + "topic": "S2R-CFM-IP1-01-2020" +},{ + "projectID": 754274, + "title": "Low Cost, Smart Tooling for Composites", + "topic": "JTI-CS2-2016-CFP04-LPA-01-23" +},{ + "projectID": 727883, + "title": "Intelligent solutions and tools in forest production systems, fostering a sustainable supply of quality wood for the growing bioeconomy", + "topic": "BB-04-2016" +},{ + "projectID": 728161, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 685082, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 671957, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 728096, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 734340, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 952873, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 639039, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 700355, + "title": "Development of technology to separate hydrogen from low-concentration hydrogen streams", + "topic": "FCH-02.5-2015" +},{ + "projectID": 820946, + "title": "Unsteady pressure sensor for high pressure and hot environment", + "topic": "JTI-CS2-2017-CfP07-ENG-01-31" +},{ + "projectID": 859357, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815759, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829941, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 683678, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 663526, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 882831, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719487, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 808814, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 737929, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 743116, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 854638, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636239, + "title": "Support for the enhancement of the impact of EeB PPP projects", + "topic": "EeB-04-2014" +},{ + "projectID": 658217, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 754171, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 101006728, + "title": "Innovative electric network architectures and systems, optimising global energy, electrical power, data and communication for aviation", + "topic": "MG-3-4-2020" +},{ + "projectID": 774094, + "title": "Smart Cities and Communities lighthouse projects", + "topic": "SCC-1-2016-2017" +},{ + "projectID": 718922, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 685478, + "title": "Power Conversion", + "topic": "JTI-CS2-2014-CFP01-FRC-02-07" +},{ + "projectID": 869060, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 960217, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 791466, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 728656, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 696069, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2015" +},{ + "projectID": 666488, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 768921, + "title": "Development of near zero energy building renovation", + "topic": "EEB-05-2017" +},{ + "projectID": 733426, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 649905, + "title": "Removing market barriers to the uptake of efficient heating and cooling solutions", + "topic": "EE-14-2014" +},{ + "projectID": 708984, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 888350, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 756696, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 646116, + "title": "Local / small-scale storage", + "topic": "LCE-08-2014" +},{ + "projectID": 866595, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878074, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816955, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636164, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1a-2014" +},{ + "projectID": 774118, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 895767, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 735379, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 886904, + "title": "Development of innovative welding systems for structural joints of Thermoplastic matrix based Composites", + "topic": "JTI-CS2-2019-CfP10-LPA-02-30" +},{ + "projectID": 663138, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 644669, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 696526, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 851917, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 784172, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 738087, + "title": "Smart oil pressure sensors for all oil cooled starter/generator", + "topic": "JTI-CS2-2016-CFP03-SYS-02-15" +},{ + "projectID": 809132, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 760779, + "title": "Architectured /Advanced material concepts for intelligent bulk material structures", + "topic": "NMBP-04-2017" +},{ + "projectID": 653851, + "title": "Optimised and systematic energy management in electric vehicles", + "topic": "GV-2-2014" +},{ + "projectID": 831751, + "title": "Development and manufacturing of innovative tooling for composite parts", + "topic": "JTI-CS2-2018-CfP08-LPA-01-50" +},{ + "projectID": 730539, + "title": "Development of new technological concepts, standard specifications and architectures for train control and monitoring, with specific applications in train-to-ground communications and high safety electronic control of brakes", + "topic": "S2R-CFM-IP1-02-2016" +},{ + "projectID": 698065, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 743024, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 637519, + "title": "New ideas for Earth-relevant space applications", + "topic": "EO-1-2014" +},{ + "projectID": 653626, + "title": "Law enforcement capabilities topic 1: Develop novel monitoring systems and miniaturised sensors that improve Law Enforcement Agencies' evidence- gathering abilities", + "topic": "FCT-05-2014" +},{ + "projectID": 723562, + "title": "Integration of advanced technologies for heating and cooling at building and district level", + "topic": "EEB-03-2016" +},{ + "projectID": 755493, + "title": "Development and manufacturing of innovative stamping dies for aluminium ribs Hot Stamping", + "topic": "JTI-CS2-2016-CFP04-AIR-02-30" +},{ + "projectID": 879726, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680658, + "title": "Integrated approach to retrofitting of residential buildings", + "topic": "EeB-08-2015" +},{ + "projectID": 898079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674539, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 723930, + "title": "New heating and cooling solutions using low grade sources of thermal energy", + "topic": "EE-04-2016-2017" +},{ + "projectID": 945535, + "title": "Systems ITD GAM 2020", + "topic": "CS2-GAM-2020-SYS" +},{ + "projectID": 717590, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 792497, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 691761, + "title": "Large scale energy storage", + "topic": "LCE-09-2015" +},{ + "projectID": 785061, + "title": "Innovative financing schemes", + "topic": "EE-23-2017" +},{ + "projectID": 803669, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 754583, + "title": "Integrated Automated Test Bench Control System with Certifiable Test Documentation Functionality", + "topic": "JTI-CS2-2016-CFP04-AIR-01-21" +},{ + "projectID": 755606, + "title": "Fuel injector coking", + "topic": "JTI-CS2-2016-CFP04-ENG-03-14" +},{ + "projectID": 878308, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887705, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877162, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691624, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2015" +},{ + "projectID": 664050, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 807801, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 738094, + "title": "Optimization two phases cooling solution using micro pump brick", + "topic": "JTI-CS2-2016-CFP03-SYS-02-16" +},{ + "projectID": 637352, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 697675, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 713788, + "title": "Powertrain control for heavy-duty vehicles with optimised emission", + "topic": "GV-6-2015" +},{ + "projectID": 791467, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 843533, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 882311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792331, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654917, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892890, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 800305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 757643, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101026747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670985, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 654147, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 792202, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101033579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658341, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 758540, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 691229, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 845430, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 886035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 660495, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 799652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 899068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 677955, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 696935, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 752436, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659204, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 633355, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 881779, + "title": "Breaking language barriers", + "topic": "S2R-OC-IPX-02-2019" +},{ + "projectID": 838164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 726947, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 101017637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 654173, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 695662, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 721321, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101002243, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 741374, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 641627, + "title": "EGNSS awareness raising, capacity building and/or promotion activities, inside or outside of the European Union", + "topic": "GALILEO-4-2014" +},{ + "projectID": 878000, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654921, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 819455, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 681942, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 660468, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799554, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 847428, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 722956, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 796332, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852352, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 890397, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 739783, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101022752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843976, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 725519, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 892210, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802695, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 673751, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 663220, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 101019291, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 790712, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 658926, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694537, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 743691, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 641858, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101033306, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758232, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 828273, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643476, + "title": "Improving the control of infectious epidemics and foodborne outbreaks through rapid identification of pathogens", + "topic": "PHC-07-2014" +},{ + "projectID": 877027, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101020127, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 842363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716230, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 658596, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101027137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885220, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 895548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802719, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 718990, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 656044, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 823666, + "title": "Ebola and other filoviral haemorrhagic fevers (Ebola+) programme: future outbreaks", + "topic": "IMI2-2015-08-01" +},{ + "projectID": 653443, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692474, + "title": "Design Technology", + "topic": "ECSEL-07-2015" +},{ + "projectID": 820985, + "title": "Digital solutions for water: linking the physical and digital world for water solutions", + "topic": "SC5-11-2018" +},{ + "projectID": 793919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 758636, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 732732, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 814962, + "title": "Marine Accident Response", + "topic": "MG-2-2-2018" +},{ + "projectID": 826183, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 872570, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 890341, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 871163, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 892612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895514, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 860306, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 723176, + "title": "Innovative concepts, systems and services towards 'mobility as a service'", + "topic": "MG-6.1-2016" +},{ + "projectID": 752920, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705207, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 691001, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 636160, + "title": "Connectivity and information sharing for intelligent mobility", + "topic": "MG-7.1-2014" +},{ + "projectID": 730815, + "title": "IT virtualization of testing environment", + "topic": "S2R-OC-IP2-02-2015" +},{ + "projectID": 101007961, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 752417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 786490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 776714, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 814753, + "title": "Marine Accident Response", + "topic": "MG-2-2-2018" +},{ + "projectID": 766464, + "title": "Highly efficient hybrid storage solutions for power and heat in residential buildings and district areas, balancing the supply and demand conditions", + "topic": "EEB-06-2017" +},{ + "projectID": 636300, + "title": "Advanced bus concepts for increased efficiency", + "topic": "MG-3.2-2014" +},{ + "projectID": 642085, + "title": "Recycling of raw materials from products and buildings", + "topic": "WASTE-3-2014" +},{ + "projectID": 815146, + "title": "Marine Accident Response", + "topic": "MG-2-2-2018" +},{ + "projectID": 636146, + "title": "Towards the energy efficient and emission free vessel", + "topic": "MG-4.1-2014" +},{ + "projectID": 776039, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 871260, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 958252, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 745766, + "title": "Bio-based polymers/plastic materials with new functionalities for medical, construction, automotive and textile industries", + "topic": "BBI-2016-D05" +},{ + "projectID": 680450, + "title": "Integrated solutions of thermal energy storage for building applications", + "topic": "EeB-06-2015" +},{ + "projectID": 779776, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 871571, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 824326, + "title": "Demographic change and participation of women in transport", + "topic": "MG-4-3-2018" +},{ + "projectID": 958303, + "title": "Pilot lines for large-part high-precision manufacturing (IA 50%)", + "topic": "DT-FOF-10-2020" +},{ + "projectID": 872548, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 951668, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 679097, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 950326, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 667375, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 686332, + "title": "Advanced analytical tool for the understanding and the prediction of core noise for large civil aero engine with low emission core", + "topic": "JTI-CS2-2014-CFP01-ENG-03-02" +},{ + "projectID": 101020631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803981, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 648765, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 862087, + "title": "Boosting the efficiency of photosynthesis (RIA)", + "topic": "BIOTEC-02-2019" +},{ + "projectID": 639526, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 658360, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101021183, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 658818, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 725126, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 705641, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 779238, + "title": "Global Alliance for Chronic Diseases (GACD) prevention and management of mental disorders", + "topic": "SC1-HCO-07-2017" +},{ + "projectID": 792746, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815439, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 692041, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 796648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815643, + "title": "New anti-infective agents for prevention and/or treatment of neglected infectious diseases (NID)", + "topic": "SC1-BHC-15-2018" +},{ + "projectID": 760010, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 896754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693056, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 840271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 747449, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803711, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 732720, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 101018454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 956070, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101019302, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 692146, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 890896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 756444, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 743544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101019828, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101001221, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101022203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637537, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647812, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647479, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 668350, + "title": "Tools and technologies for advanced therapies", + "topic": "PHC-16-2015" +},{ + "projectID": 847770, + "title": "Towards risk-based screening strategies for non-communicable diseases", + "topic": "SC1-BHC-30-2019" +},{ + "projectID": 693418, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 817754, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 656902, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 723242, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 741707, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 743543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701825, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818762, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 642774, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 836698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706425, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 645852, + "title": "ICT-enabled open government", + "topic": "INSO-1-2014" +},{ + "projectID": 824989, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 648909, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 703953, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 882929, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 891458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 633784, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 101025677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 888181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839763, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 737627, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101020077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702130, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 945473, + "title": "Accelerating research & innovation for advanced therapy medicinal products", + "topic": "IMI2-2019-18-05" +},{ + "projectID": 959200, + "title": "Addressing radicalization through social inclusion", + "topic": "SU-GOVERNANCE-09-2020" +},{ + "projectID": 957514, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 656511, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101025598, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 966760, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 646876, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 636820, + "title": "Integrated Process Control", + "topic": "SPIRE-01-2014" +},{ + "projectID": 101020167, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 745604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 780645, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101025204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715371, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 656144, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657633, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 745886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 778616, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 665631, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 115976, + "title": "Inflammation and AD: modulating microglia function – focussing on TREM2 and CD33", + "topic": "IMI2-2015-05-03" +},{ + "projectID": 886481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690904, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 638707, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 648889, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 797619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731105, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 886224, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 677501, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 819753, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 841265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 886196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101007598, + "title": "Installed UHBR Nacelle Off-Design Performance Characteristics.", + "topic": "JTI-CS2-2020-CfP11-LPA-01-94" +},{ + "projectID": 890745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 805194, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 721613, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 660060, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 644663, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 721802, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 742224, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 851274, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 804166, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101027241, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 646891, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801953, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 657663, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 873089, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 804071, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 733073, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 957356, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 706694, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658078, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656870, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 747458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 649019, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 862111, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101020478, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101030560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 861151, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 745730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 765911, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 669132, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 790445, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 750772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 634570, + "title": "Health promotion and disease prevention: translating 'omics' into stratified approaches", + "topic": "PHC-05-2014" +},{ + "projectID": 748293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 705135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 884745, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 812574, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 656812, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875542, + "title": "An inclusive digitally interconnected transport system meeting citizens' needs", + "topic": "MG-4-5-2019" +},{ + "projectID": 707684, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 722842, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 800031, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 813327, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 726470, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 853365, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702585, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840081, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 841454, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 647787, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 899538, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 647685, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 702238, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 675392, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 726386, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 801075, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 851682, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 700999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 756962, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101022681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895808, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657995, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703802, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 894466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 636816, + "title": "Methodologies, tools and indicators for cross-sectorial sustainability assessment of energy and resource efficient solutions in the process industry", + "topic": "SPIRE-04-2014" +},{ + "projectID": 838403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742808, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 792843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890768, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 790203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 945307, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 726380, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 662725, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 700031, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101025315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 744604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 831514, + "title": "Non-invasive clinical molecular imaging of immune cells", + "topic": "IMI2-2018-14-02" +},{ + "projectID": 846284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 828838, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 792504, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758494, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 812994, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 823989, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 695669, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 761214, + "title": "Nanotechnologies for imaging cellular transplants and regenerative processes in vivo", + "topic": "NMBP-15-2017" +},{ + "projectID": 649396, + "title": "Resilient and sustainable economic and monetary union in Europe", + "topic": "EURO-1-2014" +},{ + "projectID": 730330, + "title": "Raw materials international co-operation", + "topic": "SC5-16-2016-2017" +},{ + "projectID": 665759, + "title": "Responsible Research and Innovation in Higher Education Curricula", + "topic": "SEAC-2-2014" +},{ + "projectID": 839646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656193, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 116060, + "title": "IDENTIFICATION OF DRUGGABLE TARGETS MODULATING MISFOLDED PROTEINS IN ALZHEIMER’S AND PARKINSON’S DISEASES", + "topic": "IMI2-2015-07-02" +},{ + "projectID": 723951, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101032526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 642929, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 722380, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101001637, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 671653, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 750294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 670645, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 656325, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 861097, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 795792, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 956977, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 749628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683211, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 825489, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 692373, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 649656, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 826232, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 891167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670428, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 842901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693579, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 678795, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 786659, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 703767, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724451, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 862201, + "title": "Boosting the efficiency of photosynthesis (RIA)", + "topic": "BIOTEC-02-2019" +},{ + "projectID": 669879, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 804673, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 772426, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 893749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 779822, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 785349, + "title": "Development of capability to understand & predict sub-idle & idle behaviour of geared VHBR engines", + "topic": "JTI-CS2-2017-CFP06-ENG-03-18" +},{ + "projectID": 639022, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 965397, + "title": "Towards the new generation of clinical trials – trials methodology research", + "topic": "SC1-BHC-37-2020" +},{ + "projectID": 737266, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 639088, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 851411, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 722509, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 866028, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 681987, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 755394, + "title": "Comparing the effectiveness of existing healthcare interventions in the adult population", + "topic": "SC1-PM-10-2017" +},{ + "projectID": 634821, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 837727, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 687777, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 724145, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 835891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860555, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 790518, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 723119, + "title": "Breakthrough innovation", + "topic": "MG-1-4-2016-2017" +},{ + "projectID": 956745, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 793268, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 837706, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702005, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 649111, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701230, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 656249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 955534, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 695487, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 790846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 767309, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 740269, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 655856, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 964677, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101020665, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 670405, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 836291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 682754, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101022365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 645693, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 641382, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 789108, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 862405, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 680032, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 861046, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 724317, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 741303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 753115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 963872, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 700990, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804523, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 759282, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101025385, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716471, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 759239, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 819336, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 659474, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 754388, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 840885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 844330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656485, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660351, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 769255, + "title": "Resilience to extreme (natural and man-made) events", + "topic": "MG-7-1-2017" +},{ + "projectID": 859752, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 766402, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 794705, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 742480, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 895580, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101033459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 691037, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 820378, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 695009, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 758826, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 842271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779444, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101034337, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 817959, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 771411, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 750677, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803852, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 779921, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 844279, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665564, + "title": "Coordination and Support Activities", + "topic": "FETOPEN-2-2014" +},{ + "projectID": 963998, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 949127, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 682833, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 965576, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 737109, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 704361, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 680102, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 703543, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 693878, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 842251, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 866005, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101019498, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 747297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890172, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 742865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 757381, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 874758, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 101017088, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 669820, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 834203, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 797785, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646597, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 810764, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 841489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 772891, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101019465, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 807281, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 727966, + "title": "Understanding host-pathogen-environment interactions", + "topic": "SFS-14-2016" +},{ + "projectID": 771047, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 700778, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818702, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101004110, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 690973, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 865644, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 690714, + "title": "Enhancing resource efficiency of aviation", + "topic": "MG-1.2-2015" +},{ + "projectID": 702718, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 708411, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101007256, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 654736, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 835312, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 708131, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101005611, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 840501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716689, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101025271, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655026, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 820188, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 704832, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842356, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 700769, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101018984, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 860909, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 747461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642069, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 646650, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 819956, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 890695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714405, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 659029, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 704175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 654712, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 757229, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 885137, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 677758, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 654912, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 753799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966581, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 660400, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 883703, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 707668, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 770045, + "title": "Cultural literacy of young generations in Europe", + "topic": "CULT-COOP-03-2017" +},{ + "projectID": 101025218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 716643, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 682574, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 690474, + "title": "An EU support mechanism for evidence-based policy on biodiversity & ecosystems services", + "topic": "SC5-10c-2015" +},{ + "projectID": 823823, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 758865, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 648613, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 732894, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 659299, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 789607, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 716378, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 841386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 811068, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 669764, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 680906, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 819920, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 957513, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 722581, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 679660, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 743482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 645733, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 748050, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 665639, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 814408, + "title": "Synthetic biology to expand diversity of nature's chemical production (RIA)", + "topic": "BIOTEC-03-2018" +},{ + "projectID": 706888, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 812660, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 706144, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 887491, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656690, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 116074, + "title": "INCREASE ACCESS AND USE OF HIGH QUALITY DATA TO IMPROVE CLINICAL OUTCOMES IN HEART FAILURE (HF), ATRIAL FIBRILLATION (AF), AND ACUTE CORONARY SYNDROME (ACS) PATIENTS", + "topic": "IMI2-2015-07-07" +},{ + "projectID": 101025880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804744, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 844398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658180, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692249, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 701455, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 832721, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 839997, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 837838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 893915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 886066, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819650, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 758221, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 749360, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 699935, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 655459, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 950610, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 845640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702435, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747381, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 858149, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 660630, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682285, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 770562, + "title": "The Asia-Pacific as a strategic region for Europe", + "topic": "ENG-GLOBALLY-06-2017" +},{ + "projectID": 683033, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 893329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731560, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 101026933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655444, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026176, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725185, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725411, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 695671, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 866006, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 777855, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 702462, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 694620, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 862035, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 892131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700838, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 722605, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 658386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 659764, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703737, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101002652, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 679411, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 950246, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 642861, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 705215, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659001, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 956410, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 685758, + "title": "Fibre-based materials for non-clothing applications", + "topic": "NMP-22-2015" +},{ + "projectID": 853546, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 833296, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 648691, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 659102, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 722610, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 809988, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 865064, + "title": "Fatigue life prediction on Inco 718 part subject to service induced damages", + "topic": "JTI-CS2-2018-CfP09-LPA-01-61" +},{ + "projectID": 750838, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 669198, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 949940, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 702493, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 955269, + "title": "Enhancing coordination between Member States' actions in the area of infrastructure research with a particular focus on biodiversity and ameliorating environmental impacts and full automated infrastructure upgrade and maintenance", + "topic": "MG-2-10-2020" +},{ + "projectID": 834580, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 735105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 818722, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 835073, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 869429, + "title": "Transforming historic urban areas and/or cultural landscapes into hubs of entrepreneurship and social and cultural integration", + "topic": "SC5-20-2019" +},{ + "projectID": 643087, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 660116, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639050, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 702868, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772798, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 945041, + "title": "Safety Research and Innovation for advanced nuclear systems", + "topic": "NFRP-2019-2020-06" +},{ + "projectID": 715787, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 705560, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101003818, + "title": "Innovative nature-based solutions for carbon neutral cities and improved air quality", + "topic": "LC-CLA-11-2020" +},{ + "projectID": 769419, + "title": "Complex and value-added specialised vessels", + "topic": "MG-2.4-2017" +},{ + "projectID": 847062, + "title": "New energy label driving and boosting innovation in products energy efficiency", + "topic": "LC-SC3-EE-15-2018" +},{ + "projectID": 815269, + "title": "Sustainable multi-modal inter-urban transport, regional mobility and spatial planning.", + "topic": "LC-MG-1-2-2018" +},{ + "projectID": 857034, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 955317, + "title": "Network and traffic management for future mobility", + "topic": "MG-2-11-2020" +},{ + "projectID": 846569, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 847132, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 101023271, + "title": "Supporting public authorities in driving the energy transition", + "topic": "LC-SC3-EC-5-2020" +},{ + "projectID": 847056, + "title": "Innovative financing for energy efficiency investments", + "topic": "LC-SC3-EE-9-2018-2019" +},{ + "projectID": 952537, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 837758, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 649867, + "title": "Organisational innovation to increase energy efficiency in industry", + "topic": "EE-16-2014" +},{ + "projectID": 864212, + "title": "European City Facility - European cities as key innovation hubs to unlock finance for energy efficiency", + "topic": "LC-SC3-EE-17-2019" +},{ + "projectID": 869171, + "title": "Building a water-smart economy and society", + "topic": "CE-SC5-04-2019" +},{ + "projectID": 807090, + "title": "Fast Rotorcraft", + "topic": "CS2-GAM-2018-FRC" +},{ + "projectID": 642228, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 945542, + "title": "Fast Rotorcraft ITD GAM 2020", + "topic": "CS2-GAM-2020-FRC" +},{ + "projectID": 820840, + "title": "Full scale innovative composite pax and cargo floor grids for Regional Aircraft Fuselage barrel on-ground demonstrators", + "topic": "JTI-CS2-2017-CfP07-REG-01-14" +},{ + "projectID": 696074, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2015" +},{ + "projectID": 641821, + "title": "Dissemination and exploitation, ICT, knowledge, gaps, research needs, etc", + "topic": "WATER-4a-2014" +},{ + "projectID": 821297, + "title": "Prototype Tooling for manufacturing composite stiffened panel for a business jet lower wing", + "topic": "JTI-CS2-2017-CfP07-AIR-01-32" +},{ + "projectID": 101005934, + "title": "Standard Sized FC module for Heavy Duty applications", + "topic": "FCH-01-4-2020" +},{ + "projectID": 847040, + "title": "Capacity building programmes to support implementation of energy audits", + "topic": "LC-SC3-EE-8-2018-2019" +},{ + "projectID": 657096, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101017720, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 955614, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 946044, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 812943, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101003598, + "title": "Advancing climate services", + "topic": "LC-CLA-12-2020" +},{ + "projectID": 825843, + "title": "Data integration and data-driven in-silico models for enabling personalised medicine - a European standardization framework", + "topic": "SC1-HCO-02-2018" +},{ + "projectID": 859890, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 710363, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2015" +},{ + "projectID": 825670, + "title": "Innovation platforms for advanced therapies of the future", + "topic": "SC1-BHC-09-2018" +},{ + "projectID": 755659, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101031370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 837730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 721577, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 899861, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 733100, + "title": "Multi omics for personalised therapies addressing diseases of the immune system", + "topic": "SC1-PM-01-2016" +},{ + "projectID": 885008, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 768740, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 777500, + "title": "Improving the care of patients suffering from acute or chronic pain", + "topic": "IMI2-2016-10-03" +},{ + "projectID": 853981, + "title": "Digital endpoints in neurodegenerative and immune-mediated diseases", + "topic": "IMI2-2018-15-06" +},{ + "projectID": 665095, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 692143, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 813834, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 899701, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 731827, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 101006661, + "title": "Enhancing coordination between Member States' actions in the area of infrastructure research with a particular focus on biodiversity and ameliorating environmental impacts and full automated infrastructure upgrade and maintenance", + "topic": "MG-2-10-2020" +},{ + "projectID": 676401, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 820820, + "title": "Linking digital assessment of mobility to clinical endpoints to support regulatory acceptance and clinical practice", + "topic": "IMI2-2017-13-07" +},{ + "projectID": 766894, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 668259, + "title": "Establishing effectiveness of health care interventions in the paediatric population", + "topic": "PHC-18-2015" +},{ + "projectID": 971549, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 681269, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 668596, + "title": "Establishing effectiveness of health care interventions in the paediatric population", + "topic": "PHC-18-2015" +},{ + "projectID": 824488, + "title": "Innovative methods for teaching ethics and research integrity", + "topic": "SwafS-02-2018" +},{ + "projectID": 825572, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 802130, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 702293, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 646141, + "title": "Novel visualization tools for enhanced nanotechnology awareness", + "topic": "NMP-31-2014" +},{ + "projectID": 633491, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 101017454, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 650029, + "title": "2014: Policy environment for FET Flagships", + "topic": "FETFLAG-2-2014" +},{ + "projectID": 692514, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Australia, USA, Brazil, South Africa, Ukraine", + "topic": "INT-01-2015" +},{ + "projectID": 691247, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 894921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777661, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 770342, + "title": "Strengthening Europe's position in the global context: science diplomacy and intercultural relations", + "topic": "ENG-GLOBALLY-01-2017" +},{ + "projectID": 872873, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 731345, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 788317, + "title": "Science education outside the classroom", + "topic": "SwafS-11-2017" +},{ + "projectID": 873048, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 692471, + "title": "Encouraging the research and innovation cooperation between the Union and selected regional partners – proposals targeting Southern Mediterranean Neighbourhood, Eastern Partnership", + "topic": "INT-02-2015" +},{ + "projectID": 666008, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2014" +},{ + "projectID": 814729, + "title": "Presidency events - Austria", + "topic": "IBA-SC6-AUSTRIA-2018" +},{ + "projectID": 780298, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 883947, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 644200, + "title": "Human-centric Digital Age", + "topic": "ICT-31-2014" +},{ + "projectID": 958223, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 101006295, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 726992, + "title": "A European map of knowledge production and co-creation in support of research and innovation for societal challenges", + "topic": "CO-CREATION-09-2016" +},{ + "projectID": 952378, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 693883, + "title": "Social innovation Community", + "topic": "INSO-5-2015" +},{ + "projectID": 764859, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101016858, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 692476, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Australia, USA, Brazil, South Africa, Ukraine", + "topic": "INT-01-2015" +},{ + "projectID": 872441, + "title": "Ethics of Innovation: the challenge of new interaction modes", + "topic": "SwafS-16-2019" +},{ + "projectID": 770063, + "title": "Education and skills: empowering Europe’s young innovators", + "topic": "CO-CREATION-01-2017" +},{ + "projectID": 693781, + "title": "The cultural, scientific and social dimension of EU-LAC relations", + "topic": "INT-12-2015" +},{ + "projectID": 872360, + "title": "Grounding RRI practices in research and innovation funding and performing organisations", + "topic": "SwafS-05-2018-2019" +},{ + "projectID": 710500, + "title": "Responsible Research and Innovation in industrial context", + "topic": "GARRI-2-2015" +},{ + "projectID": 101022565, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 951887, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 645785, + "title": "Encouraging the research and innovation cooperation between the Union and selected regional partners – proposals targeting Black Sea, Middle East, Africa", + "topic": "INT-02-2014" +},{ + "projectID": 824580, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 101006285, + "title": "Bottom-up approach to build SwafS knowledge base", + "topic": "SwafS-31-2020" +},{ + "projectID": 773757, + "title": "Business models for modern rural economies", + "topic": "RUR-09-2017" +},{ + "projectID": 857562, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 883424, + "title": "Technologies to enhance border and external security", + "topic": "SU-BES02-2018-2019-2020" +},{ + "projectID": 101006386, + "title": "Hands-on citizen science and frugal innovation", + "topic": "SwafS-27-2020" +},{ + "projectID": 101004776, + "title": "Technological transformations, skills and globalization - future challenges for shared prosperity", + "topic": "TRANSFORMATIONS-18-2020" +},{ + "projectID": 695989, + "title": "Removing market barriers to the uptake of efficient heating and cooling solutions", + "topic": "EE-14-2015" +},{ + "projectID": 101004242, + "title": "Copernicus evolution: new concept for an innovative and holistic solution for Sentinels calibration & validation", + "topic": "LC-SPACE-19-EO-2020" +},{ + "projectID": 633692, + "title": "Sustainable food and nutrition security through evidence based EU agro-food policy", + "topic": "SFS-19-2014" +},{ + "projectID": 662320, + "title": "Improved safety design and operation of fission reactors", + "topic": "NFRP-01-2014" +},{ + "projectID": 755554, + "title": "Research and innovation on the overall management of radioactive waste other than geological disposal.", + "topic": "NFRP-7" +},{ + "projectID": 769826, + "title": "Electric vehicle user-centric design for optimised energy efficiency", + "topic": "GV-05-2017" +},{ + "projectID": 721116, + "title": "IRIMA-2015", + "topic": "IRIMA-2015" +},{ + "projectID": 945300, + "title": "Ageing phenomena of components and structures and operational issues", + "topic": "NFRP-2019-2020-01" +},{ + "projectID": 755151, + "title": "Continually improving safety and reliability of Generation II and III reactors", + "topic": "NFRP-1" +},{ + "projectID": 755478, + "title": "Research on the safety of small modular reactors", + "topic": "NFRP-4" +},{ + "projectID": 891513, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875131, + "title": "User centric charging infrastructure", + "topic": "LC-GV-03-2019" +},{ + "projectID": 945272, + "title": "Ageing phenomena of components and structures and operational issues", + "topic": "NFRP-2019-2020-01" +},{ + "projectID": 945022, + "title": "Safety Research and Innovation for advanced nuclear systems", + "topic": "NFRP-2019-2020-06" +},{ + "projectID": 653468, + "title": "Hybrid light and heavy duty vehicles", + "topic": "GV-4-2014" +},{ + "projectID": 870620, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 714048, + "title": "SECURITY", + "topic": "SECURITY" +},{ + "projectID": 860441, + "title": "Upgrading transport infrastructure in order to monitor noise and emissions", + "topic": "LC-MG-1-9-2019" +},{ + "projectID": 690804, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 653531, + "title": "Next generation of competitive Li-ion batteries to meet customer expectations", + "topic": "GV-1-2014" +},{ + "projectID": 799593, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 646325, + "title": "Coordination of EU and international efforts in safety of nanotechnology", + "topic": "NMP-27-2014" +},{ + "projectID": 762135, + "title": "Econometric analyses and indicators on the impact of R&I", + "topic": "IBA-SC6-INNOVA-2016" +},{ + "projectID": 847626, + "title": "Development of a roadmap for decommissioning research aiming at safety improvement, environmental impact minimisation and cost reduction", + "topic": "NFRP-2018-5" +},{ + "projectID": 755576, + "title": "Support for careers in the nuclear field", + "topic": "NFRP-12" +},{ + "projectID": 730227, + "title": "Raw materials policy support actions", + "topic": "SC5-15-2016-2017" +},{ + "projectID": 870330, + "title": "Research and innovation network of governmental users of secure satellite communications", + "topic": "SU-SPACE-31-SEC-2019" +},{ + "projectID": 685931, + "title": "Societal engagement on responsible nanotechnology", + "topic": "NMP-32-2015" +},{ + "projectID": 653390, + "title": "Crisis management topic 7: Crises and disaster resilience – operationalizing resilience concepts", + "topic": "DRS-07-2014" +},{ + "projectID": 963560, + "title": "Reducing the cost of large batteries for waterborne transport", + "topic": "LC-BAT-11-2020" +},{ + "projectID": 875126, + "title": "Strengthening EU materials technologies for non-automotive battery storage (RIA)", + "topic": "LC-BAT-2-2019" +},{ + "projectID": 875247, + "title": "Li-ion Cell Materials & Transport Modelling", + "topic": "LC-BAT-6-2019" +},{ + "projectID": 875479, + "title": "Network of Li-ion cell pilot lines", + "topic": "LC-BAT-7-2019" +},{ + "projectID": 875028, + "title": "Strongly improved, highly performant and safe all solid state batteries for electric vehicles (RIA)", + "topic": "LC-BAT-1-2019" +},{ + "projectID": 957273, + "title": "Sensing functionalities for smart battery cell chemistries", + "topic": "LC-BAT-13-2020" +},{ + "projectID": 875033, + "title": "Research and innovation for advanced Li-ion cells (generation 3b)", + "topic": "LC-BAT-5-2019" +},{ + "projectID": 857088, + "title": "Development of composite indicators on R&I performance and econometric analysis", + "topic": "IBA-SC6-INNOVAIV-2019" +},{ + "projectID": 661910, + "title": "Education and training (Bologna and Copenhagen processes)", + "topic": "NFRP-10-2015" +},{ + "projectID": 899360, + "title": "Roadmap for use of Euratom access rights to Jules Horowitz Reactor experimental capacity", + "topic": "NFRP-2019-2020-16" +},{ + "projectID": 755443, + "title": "Addressing key priority R&I issues for the first-of-the-kind geological repositories", + "topic": "NFRP-6" +},{ + "projectID": 837722, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 101015509, + "title": "Industrial Research and Innovation Monitoring and Analysis", + "topic": "IBA-SC6-Industrial-2020" +},{ + "projectID": 768559, + "title": "Integration of Demand Response in Energy Management Systems while ensuring interoperability through Public Private Partnership (EeB PPP)", + "topic": "EE-12-2017" +},{ + "projectID": 811163, + "title": "Industrial Research and Innovation Monitoring and Analysis", + "topic": "IBA-SC6-Industrial-2017" +},{ + "projectID": 689812, + "title": "Demonstrating the concept of 'Citizen Observatories'", + "topic": "SC5-17-2015" +},{ + "projectID": 814956, + "title": "EU-China 5G Collaboration", + "topic": "ICT-22-2018" +},{ + "projectID": 671546, + "title": "Supporting the licensing of Western nuclear fuel for reactors of VVER design operating in the EU", + "topic": "NFRP-16-2015" +},{ + "projectID": 955387, + "title": "Understanding and mitigating the effects on public health of emerging non-regulated nanoparticle emissions issues and noise", + "topic": "LC-MG-1-14-2020" +},{ + "projectID": 662284, + "title": "Tool for the fast and reliable prediction of severe accident progression and anticipation of the source term of a nuclear accident", + "topic": "NFRP-02-2014" +},{ + "projectID": 833017, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 789562, + "title": "Enabling pre-commercial production of advanced aviation biofuel", + "topic": "LCE-20-2016-2017" +},{ + "projectID": 653951, + "title": "EU concerted development of Member State research on radioactive waste management", + "topic": "NFRP-04-2014" +},{ + "projectID": 754501, + "title": "Research on safety of fast neutron Generation-IV reactors", + "topic": "NFRP-2" +},{ + "projectID": 724085, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 101008139, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 775989, + "title": "Supporting the implementation of the Security Industrial Policy and Action Plan through the European Reference Network for Critical Infrastructure Protection (ERNCIP)", + "topic": "IBA-SC7-ERNCIP-2017" +},{ + "projectID": 691156, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 847656, + "title": "Safety assessments to improve accident management strategies for Generation II & III reactors", + "topic": "NFRP-2018-1" +},{ + "projectID": 755171, + "title": "Investigating the safety of closed nuclear fuel cycle options and fuel developments", + "topic": "NFRP-3" +},{ + "projectID": 721452, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 958211, + "title": "Raw materials policy support actions for the circular economy - Expert network on Critical Raw Materials", + "topic": "CE-SC5-08-2020" +},{ + "projectID": 896300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 633814, + "title": "Provision of public goods by EU agriculture and forestry: Putting the concept into practice", + "topic": "ISIB-01-2014" +},{ + "projectID": 861932, + "title": "Analytical tools and models to support policies related to agriculture and food", + "topic": "RUR-04-2018-2019" +},{ + "projectID": 101003650, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 635750, + "title": "Soil quality and function", + "topic": "SFS-04-2014" +},{ + "projectID": 945313, + "title": "Innovation for Generation II and III reactors", + "topic": "NFRP-2019-2020-04" +},{ + "projectID": 689954, + "title": "Improving the air quality and reducing the carbon footprint of European cities", + "topic": "SC5-04-2015" +},{ + "projectID": 874972, + "title": "Low-emissions propulsion for long-distance trucks and coaches", + "topic": "LC-GV-04-2019" +},{ + "projectID": 847553, + "title": "Research on the safety of Light Water Small Modular Reactors", + "topic": "NFRP-2018-3" +},{ + "projectID": 883054, + "title": "Pan-European networks of practitioners and other actors in the field of security", + "topic": "SU-GM01-2018-2019-2020" +},{ + "projectID": 115924, + "title": "The Consistency Approach to Quality Control in Vaccine Manufacture", + "topic": "IMI2-2015-03-04" +},{ + "projectID": 847441, + "title": "Safety assessments to improve accident management strategies for Generation II & III reactors", + "topic": "NFRP-2018-1" +},{ + "projectID": 661891, + "title": "New innovative approaches to reactor safety", + "topic": "NFRP-03-2014" +},{ + "projectID": 875530, + "title": "Developing and testing shared, connected and cooperative automated vehicle fleets in urban areas for the mobility of all", + "topic": "DT-ART-04-2019" +},{ + "projectID": 707532, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 752373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 722629, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 819236, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 633311, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 806097, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 101016247, + "title": "Behavioural, social and economic impacts of the outbreak response", + "topic": "SC1-PHE-CORONAVIRUS-2020-2C" +},{ + "projectID": 681835, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 682804, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 704507, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748161, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 680313, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 649773, + "title": "Construction skills", + "topic": "EE-04-2014" +},{ + "projectID": 654495, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705391, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701275, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 749475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655492, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 701750, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 644629, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 692919, + "title": "Cultural opposition in the former socialist countries", + "topic": "REFLECTIVE-4-2015" +},{ + "projectID": 715593, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 752060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 757951, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 746257, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 702707, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 706034, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 771800, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 633396, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 716375, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 730823, + "title": "Freight Propulsion concepts", + "topic": "S2R-CFM-IP5-03-2015" +},{ + "projectID": 738182, + "title": "Design for Automated Installation of Linings and Hatracks in Cabin and Cargo", + "topic": "JTI-CS2-2016-CFP03-LPA-02-13" +},{ + "projectID": 750848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864542, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 648535, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647315, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 711221, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101019035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101036068, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 652925, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101032680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 694476, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 748463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 792629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101020692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 678711, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 839477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 646426, + "title": "Local / small-scale storage", + "topic": "LCE-08-2014" +},{ + "projectID": 707027, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 691215, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 716950, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 647910, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 683069, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 670792, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 722959, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 681663, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 743799, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 895634, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708042, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 708601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 890975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704528, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 762079, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 819137, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 638578, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 885794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 633351, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 702606, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819440, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 873306, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673682, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 101033615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656748, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 751526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706026, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 654534, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 837154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 722995, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 887153, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795117, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 818500, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 633402, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 894400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 750690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 850764, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 826761, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 635188, + "title": "Consolidating the economic sustainability and competitiveness of European fisheries and aquaculture sectors to reap the potential of seafood markets", + "topic": "BG-10-2014" +},{ + "projectID": 705763, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 950414, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 633363, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 779962, + "title": "Tools for smart digital content in the creative industries", + "topic": "ICT-20-2017" +},{ + "projectID": 834033, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 725253, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 748645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 726195, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 658376, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 636983, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 876982, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101018881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101032402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 819023, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 772665, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 682451, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 891966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 818641, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 656738, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 725319, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 655764, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101035820, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 946105, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 678503, + "title": "Manufacturing of custom made parts for personalised products", + "topic": "FoF-10-2015" +},{ + "projectID": 733544, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 701479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748105, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642571, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 840992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101032467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704152, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885955, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 786572, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 898038, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 735977, + "title": "Identification of legal-administrative barriers for the installation and operation of key FCH technologies", + "topic": "FCH-04-2-2016" +},{ + "projectID": 641187, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 688620, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 757452, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 722967, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 851022, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 722950, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 870939, + "title": "Collaborative approaches to cultural heritage for social cohesion", + "topic": "DT-TRANSFORMATIONS-11-2019" +},{ + "projectID": 798109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669529, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 756487, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 656650, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 948278, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 864403, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699874, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661583, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101027138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 696613, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 710750, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 896941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705108, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 867427, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 715452, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 722966, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 687921, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 891415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656779, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 633297, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 694612, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 633175, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 677355, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 714615, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 750086, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 663534, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 648624, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101017746, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 772762, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 838680, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 761544, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 787342, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 741920, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 748634, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727255, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 818399, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 682022, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 813095, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 860949, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 951459, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 824173, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 634415, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 824565, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 773079, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 765298, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101036504, + "title": "Behavioural, social and cultural change for the Green Deal", + "topic": "LC-GD-10-2-2020" +},{ + "projectID": 654208, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 101015557, + "title": "Support to Plan S implementation", + "topic": "IBA-SWAFS-PlanS-2020" +},{ + "projectID": 705630, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 835263, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 730033, + "title": "Partnering environment for FET flagships", + "topic": "FETFLAG-01-2016" +},{ + "projectID": 794657, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101006201, + "title": "Grounding RRI in society with a focus on citizen science", + "topic": "SwafS-23-2020" +},{ + "projectID": 687373, + "title": "International Cooperation in space science", + "topic": "COMPET-06-2015" +},{ + "projectID": 652644, + "title": "Ocean literacy – Engaging with society – Social Innovation", + "topic": "BG-13-2014" +},{ + "projectID": 872113, + "title": "Scenarios for an award/certification system for gender equality in research organisations and universities in Europe", + "topic": "SwafS-11-2019" +},{ + "projectID": 101006279, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 693514, + "title": "Meeting new societal needs by using emerging technologies in the public sector", + "topic": "EURO-6-2015" +},{ + "projectID": 789315, + "title": "Responsible Research and Innovation (RRI) in support of sustainability and governance, taking account of the international context", + "topic": "SwafS-23-2017" +},{ + "projectID": 733032, + "title": "The European Human Biomonitoring Initiative", + "topic": "SC1-PM-05-2016" +},{ + "projectID": 846392, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 886046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854088, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 101006482, + "title": "Science education outside the classroom", + "topic": "SwafS-24-2020" +},{ + "projectID": 647224, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 686089, + "title": "Nanomedicine therapy for cancer", + "topic": "NMP-11-2015" +},{ + "projectID": 640347, + "title": "Technology “demonstrator projects” for exploration", + "topic": "COMPET-09-2014" +},{ + "projectID": 705555, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101015990, + "title": "Behavioural, social and economic impacts of the outbreak response", + "topic": "SC1-PHE-CORONAVIRUS-2020-2C" +},{ + "projectID": 101006261, + "title": "Gender-based violence including sexual harassment in research organisations and universities", + "topic": "SwafS-25-2020" +},{ + "projectID": 101003914, + "title": "Raw materials innovation actions: exploration and Earth observation in support of sustainable mining", + "topic": "SC5-10-2019-2020" +},{ + "projectID": 687253, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 859908, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 834618, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 956758, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 634439, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 733391, + "title": "Implementation research for scaling-up of evidence based innovations and good practice in Europe and low- and middle-income countries", + "topic": "SC1-PM-21-2016" +},{ + "projectID": 724115, + "title": "Celebrating European Science", + "topic": "SwafS-25-2016" +},{ + "projectID": 643809, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 832350, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 731046, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 824521, + "title": "Grounding RRI practices in research and innovation funding and performing organisations", + "topic": "SwafS-05-2018-2019" +},{ + "projectID": 101003608, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 743941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825410, + "title": "Exploiting research outcomes and application potential of the human microbiome for personalised prediction, prevention and treatment of disease", + "topic": "SC1-BHC-03-2018" +},{ + "projectID": 669371, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 800046, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 667837, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 825700, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 674911, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 724834, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 644333, + "title": "Cracking the language barrier", + "topic": "ICT-17-2014" +},{ + "projectID": 824982, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 955321, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 633190, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 654148, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 679614, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 823890, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 737093, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 860675, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 710059, + "title": "Responsible Research and Innovation in industrial context", + "topic": "GARRI-2-2015" +},{ + "projectID": 643051, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 958277, + "title": "Citizens and industrial technologies (CSA)", + "topic": "NMBP-38-2020" +},{ + "projectID": 101006249, + "title": "The ethics of technologies with high socio-economic impact", + "topic": "SwafS-29-2020" +},{ + "projectID": 768622, + "title": "Governing innovation of nanotechnology through enhanced societal engagement", + "topic": "NMBP-34-2017" +},{ + "projectID": 873178, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101006361, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 841909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 817947, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 635122, + "title": "New therapies for chronic non-communicable diseases", + "topic": "PHC-13-2014" +},{ + "projectID": 634137, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 840704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779257, + "title": "Diagnostic characterisation of rare diseases", + "topic": "SC1-PM-03-2017" +},{ + "projectID": 633983, + "title": "Health promotion and disease prevention: translating 'omics' into stratified approaches", + "topic": "PHC-05-2014" +},{ + "projectID": 703456, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731060, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 733273, + "title": "Vaccine development for malaria and/or neglected infectious diseases", + "topic": "SC1-PM-06-2016" +},{ + "projectID": 668303, + "title": "Piloting personalised medicine in health and care systems", + "topic": "PHC-24-2015" +},{ + "projectID": 661644, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833247, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 871124, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 898134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 754326, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 659838, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 726997, + "title": "An empirically informed European theory of justice and fairness", + "topic": "REV-INEQUAL-01-2016" +},{ + "projectID": 678286, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 891818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 728018, + "title": "Impulsivity and compulsivity and the link with nutrition, lifestyle and the socio-economic environment", + "topic": "SFS-38-2016" +},{ + "projectID": 115910, + "title": "Pertussis vaccination research", + "topic": "IMI2-2015-03-05" +},{ + "projectID": 661373, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101000942, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 956673, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 857359, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 115952, + "title": "Understanding the role of amyloid imaging biomarkers in the current and future diagnosis and management of patients across the spectrum of cognitive impairment (from pre-dementia to dementia)", + "topic": "IMI2-2015-05-04" +},{ + "projectID": 812969, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101016851, + "title": "AI for Genomics and Personalised Medicine", + "topic": "DT-TDS-04-2020" +},{ + "projectID": 667302, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 634789, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 725246, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 964698, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 964908, + "title": "Coordination of clinical research activities of the European Reference Networks", + "topic": "SC1-HCO-20-2020" +},{ + "projectID": 640954, + "title": "Global Systems Science (GSS)", + "topic": "FETPROACT-1-2014" +},{ + "projectID": 787622, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 958840, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 115916, + "title": "Linking Clinical Neuropsychiatry and Quantitative Neurobiology", + "topic": "IMI2-2015-03-03" +},{ + "projectID": 829060, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 675324, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 682591, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 725970, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 640074, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 847507, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 641549, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 116106, + "title": "VALIDATION OF TRANSLATIONAL IMAGING METHODS IN DRUG SAFETY ASSESSMENT (TRISTAN)", + "topic": "IMI2-2015-07-01" +},{ + "projectID": 750026, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101008500, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 848196, + "title": "Demonstration pilots for implementation of personalised medicine in healthcare", + "topic": "SC1-BHC-25-2019" +},{ + "projectID": 951976, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 721757, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 777460, + "title": "Understanding hypoglycaemia: the underlying mechanisms and addressing clinical determinants as well as consequences for people with diabetes by combining databases from clinical trials", + "topic": "IMI2-2016-10-01" +},{ + "projectID": 835908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703141, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 755402, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 658868, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 802210, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101003954, + "title": "Plastics in the environment: understanding the sources, transport, distribution and impacts of plastics pollution", + "topic": "CE-SC5-30-2020" +},{ + "projectID": 899687, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 779317, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 677601, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 840286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101035817, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 706349, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 772337, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 682275, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101015825, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 634928, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 713481, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 640422, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 722346, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 846702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 873028, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 751437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766287, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 820742, + "title": "Effective Industrial Human-Robot Collaboration (RIA)", + "topic": "DT-FOF-02-2018" +},{ + "projectID": 964220, + "title": "Digital diagnostics – developing tools for supporting clinical decisions by integrating various diagnostic data", + "topic": "SC1-BHC-06-2020" +},{ + "projectID": 864180, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 642820, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 804985, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 737607, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 853995, + "title": "Microenvironment imposed signatures in tissue and liquid biopsies in immune- mediated diseases", + "topic": "IMI2-2018-15-03" +},{ + "projectID": 679921, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 688188, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 764281, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 847422, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 864929, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 780871, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 633724, + "title": "Evaluating existing screening and prevention programmes", + "topic": "PHC-06-2014" +},{ + "projectID": 891484, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 693064, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 805031, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 958318, + "title": "Tapping into the potential of Industrial Symbiosis", + "topic": "CE-SPIRE-01-2020" +},{ + "projectID": 763560, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 895721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 951714, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 953327, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 693400, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 889328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794273, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 838711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862568, + "title": "Integrated health approaches and alternatives to pesticide use", + "topic": "SFS-04-2019-2020" +},{ + "projectID": 825785, + "title": "Novel patient-centred approaches for survivorship, palliation and/or end-of-life care", + "topic": "SC1-BHC-23-2018" +},{ + "projectID": 824536, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 101018805, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 771059, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 847782, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 659221, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101004728, + "title": "Innovation pilots", + "topic": "INFRAINNOV-04-2020" +},{ + "projectID": 660328, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 639776, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 116076, + "title": "DRY AGE-RELATED MACULAR DEGENERATION: DEVELOPMENT OF NOVEL CLINICAL ENDPOINTS FOR CLINICAL TRIALS WITH A REGULATORY AND PATIENT ACCESS INTENTION", + "topic": "IMI2-2015-07-04" +},{ + "projectID": 818110, + "title": "Personalized Nutrition", + "topic": "DT-SFS-14-2018" +},{ + "projectID": 713524, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 727666, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 713533, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 746762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 802940, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 852189, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 737390, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 657255, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 947717, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 642687, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 861329, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101033489, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 959201, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 777492, + "title": "How Big Data could support better diagnosis and treatment outcomes for Prostate Cancer", + "topic": "IMI2-2016-10-02" +},{ + "projectID": 856538, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 955576, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 732546, + "title": "Net Innovation Initiative", + "topic": "ICT-12-2016" +},{ + "projectID": 850849, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 844734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860718, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 963876, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 847818, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 101003589, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 777389, + "title": "Creation of a pan-European Paediatric Clinical Trials Network", + "topic": "IMI2-2016-10-04" +},{ + "projectID": 834441, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 795921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 683262, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 883285, + "title": "Demonstration of novel concepts for the management of pandemic crises", + "topic": "SU-DRS05-2019" +},{ + "projectID": 955722, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 638589, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 872557, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 676408, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 740295, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 841843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692976, + "title": "The European Union, Turkey and its wider neighbourhood: challenges and opportunities", + "topic": "INT-09-2015" +},{ + "projectID": 822622, + "title": "Past, present and future of differentiation in European governance", + "topic": "GOVERNANCE-02-2018-2019" +},{ + "projectID": 693244, + "title": "Towards a new geopolitical order in the South and East Mediterranean region", + "topic": "INT-07-2015" +},{ + "projectID": 101000063, + "title": "SCIENTIX IV - Building and managing Science Education Community in Europe by promoting Inquiry-Based Science Education and other initiatives at national level", + "topic": "IBA-SWFS-SCIENTIX-2020" +},{ + "projectID": 101004633, + "title": "Mentoring scheme for schools: mainstreaming innovation by spreading the advanced ICT-based teaching practices to a wide circle of schools", + "topic": "DT-TRANSFORMATIONS-21-2020" +},{ + "projectID": 101004564, + "title": "Narratives on migration and its impact: past and present", + "topic": "MIGRATION-09-2020" +},{ + "projectID": 870952, + "title": "Social and economic effects of migration in Europe and integration policies", + "topic": "MIGRATION-03-2019" +},{ + "projectID": 693055, + "title": "Re-invigorating the partnership between the two shores of the Mediterranean", + "topic": "INT-06-2015" +},{ + "projectID": 822453, + "title": "Addressing the challenge of forced displacement", + "topic": "MIGRATION-08-2018" +},{ + "projectID": 779538, + "title": "Large scale demonstration of Hydrogen Refuelling Stations and Fuel Cell Electric Vehicle (FCEV) road vehicles operated in fleet(s)", + "topic": "FCH-01-6-2017" +},{ + "projectID": 101036594, + "title": "Green airports and ports as multimodal hubs for sustainable and smart mobility", + "topic": "LC-GD-5-1-2020" +},{ + "projectID": 101004714, + "title": "Inclusive and innovative practices for the integration of recently arrived migrants in local communities", + "topic": "MIGRATION-04-2020" +},{ + "projectID": 700350, + "title": "Large scale demonstration of Hydrogen Refuelling Stations and FCEV road vehicles - including buses and on site electrolysis", + "topic": "FCH-03.1-2015" +},{ + "projectID": 826236, + "title": "Large Scale Demonstration of H2 fueled HD Trucks with High Capacity Hydrogen Refueling Stations (HRS)", + "topic": "FCH-01-1-2018" +},{ + "projectID": 101036871, + "title": "Green airports and ports as multimodal hubs for sustainable and smart mobility", + "topic": "LC-GD-5-1-2020" +},{ + "projectID": 886836, + "title": "Innovative Noise Generation System for testing of Regional Cabin Interior Noise reduction", + "topic": "JTI-CS2-2019-CFP10-REG-01-19" +},{ + "projectID": 868181, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821043, + "title": "Aircraft design and noise assessment for a regional application", + "topic": "JTI-CS2-2017-CfP07-ENG-02-07" +},{ + "projectID": 691752, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 870037, + "title": "Open Innovation for collaborative production engineering (IA)", + "topic": "DT-FOF-05-2019" +},{ + "projectID": 952936, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 730109, + "title": "Downstream applications", + "topic": "EO-1-2016" +},{ + "projectID": 101005330, + "title": "Grounding RRI in society with a focus on citizen science", + "topic": "SwafS-23-2020" +},{ + "projectID": 101036143, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 952874, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 821479, + "title": "Demonstrating systemic urban development for circular and regenerative cities", + "topic": "CE-SC5-03-2018" +},{ + "projectID": 723194, + "title": "New ways of supporting development and implementation of neighbourhood-level and urban-district-level transport innovations", + "topic": "MG-4.5-2016" +},{ + "projectID": 818369, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 958337, + "title": "Tapping into the potential of Industrial Symbiosis", + "topic": "CE-SPIRE-01-2020" +},{ + "projectID": 821518, + "title": "Design and development of a tool to support and improve the decision making process of investors for financing high-growth potential innovative SMES", + "topic": "INNOSUP-09-2018" +},{ + "projectID": 870518, + "title": "International Cooperation Copernicus – Designing EO downstream applications with international partners", + "topic": "DT-SPACE-06-EO-2019" +},{ + "projectID": 646469, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 952930, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 824388, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 779541, + "title": "Demonstration of fuel cell-based energy storage solutions for isolated micro-grid or off-grid remote areas", + "topic": "FCH-02-12-2017" +},{ + "projectID": 862583, + "title": "Real-time nano-characterisation technologies (RIA)", + "topic": "DT-NMBP-08-2019" +},{ + "projectID": 736351, + "title": "Demonstration of large-scale rapid response electrolysis to provide grid balancing services and to supply hydrogen markets", + "topic": "FCH-02-7-2016" +},{ + "projectID": 671458, + "title": "Improvement of electrolyser design for grid integration", + "topic": "FCH-02.8-2014" +},{ + "projectID": 731574, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 700359, + "title": "Improved electrolysis for Off-grid Hydrogen production", + "topic": "FCH-02.1-2015" +},{ + "projectID": 884229, + "title": "Integrated solutions for flexible operation of fossil fuel power plants through power-to-X-to-power and/or energy storage", + "topic": "LC-SC3-NZE-4-2019" +},{ + "projectID": 101007247, + "title": "ECSEL-IA", + "topic": "ECSEL-2020-1-IA" +},{ + "projectID": 101007311, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 958161, + "title": "Digital Building Twins (RIA)", + "topic": "LC-EEB-08-2020" +},{ + "projectID": 826299, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 731893, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 773960, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 768718, + "title": "Development of near zero energy building renovation", + "topic": "EEB-05-2017" +},{ + "projectID": 655033, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 829433, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 640497, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 784020, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 775047, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 849281, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 817306, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875358, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 853459, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 825759, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 732461, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 706760, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 778503, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 788734, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 787021, + "title": "Through-foliage detection, including in the outermost regions of the EU", + "topic": "SEC-16-BES-2017" +},{ + "projectID": 648913, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 637960, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 965674, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 868346, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698824, + "title": "Data Science in ATM", + "topic": "Sesar-02-2015" +},{ + "projectID": 772086, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 707326, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 865958, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 851895, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 695747, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 763831, + "title": "Ground-based technology", + "topic": "RPAS-04" +},{ + "projectID": 894162, + "title": "Digital Information Management", + "topic": "SESAR-ER4-04-2019" +},{ + "projectID": 876017, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 874163, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851676, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101002802, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 797937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855829, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 789825, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 875171, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 101023721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025848, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 786890, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 638154, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 746592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703689, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884902, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 870344, + "title": "International Cooperation Copernicus – Designing EO downstream applications with international partners", + "topic": "DT-SPACE-06-EO-2019" +},{ + "projectID": 835117, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 797876, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 865677, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 836990, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813884, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101019254, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 724473, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 780814, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 835774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101019724, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 793849, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 718357, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 827612, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 884178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 811389, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745560, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101007871, + "title": "Large scale aircraft composite structures recycling [ECO]", + "topic": "JTI-CS2-2020-CfP11-LPA-02-36" +},{ + "projectID": 957210, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 636496, + "title": "Smarter design, construction and maintenance", + "topic": "MG-8.1a-2014" +},{ + "projectID": 890378, + "title": "U-space", + "topic": "SESAR-ER4-31-2019" +},{ + "projectID": 877170, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 772376, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 793346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 965343, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 701236, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 889670, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 799835, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669792, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 855734, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812312, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735734, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 817977, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 898286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 812882, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 674049, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 865855, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101018557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 816920, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647704, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 865963, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 840465, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 945447, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 887865, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101020940, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 691025, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 815493, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726695, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 835012, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 786698, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 875351, + "title": "Big data and Artificial Intelligence for monitoring health status and quality of life after the cancer treatment", + "topic": "SC1-DTH-01-2019" +},{ + "projectID": 694786, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 826655, + "title": "H2020-ECSEL-2018-2-RIA", + "topic": "ECSEL-2018-2-RIA" +},{ + "projectID": 805970, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 784399, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 775371, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 840834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 837966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 838602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 815903, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864220, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826506, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 870635, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 757481, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 861630, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 867334, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864420, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 724290, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 781234, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 752907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 761634, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 872866, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 866681, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 773360, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 703893, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 877353, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 757634, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 725291, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 832518, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804955, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 841301, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 955990, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 787399, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 694504, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 965221, + "title": "Digital diagnostics – developing tools for supporting clinical decisions by integrating various diagnostic data", + "topic": "SC1-BHC-06-2020" +},{ + "projectID": 789373, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 721463, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 732158, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 101027222, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 835970, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 766069, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 795246, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 882725, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780684, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 840319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 732348, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 852669, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101017255, + "title": "An empowering, inclusive Next Generation Internet", + "topic": "ICT-57-2020" +},{ + "projectID": 861377, + "title": "Moving freight by Water: Sustainable Infrastructure and Innovative Vessels", + "topic": "MG-2-6-2019" +},{ + "projectID": 761913, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 101006964, + "title": "Advanced drilling and well completion techniques for cost reduction in geothermal energy", + "topic": "LC-SC3-RES-18-2020" +},{ + "projectID": 800986, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 836843, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666438, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 846456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 644235, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 896225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705498, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 899794, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 887771, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007730, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 784183, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 835079, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 699303, + "title": "ATM Performance", + "topic": "Sesar-11-2015" +},{ + "projectID": 955862, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 851703, + "title": "Optimising manufacturing and system operation", + "topic": "LC-SC3-RES-14-2019" +},{ + "projectID": 815955, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101033237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656547, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 745829, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 855558, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101001567, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 772021, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 660086, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 769902, + "title": "Electric vehicle user-centric design for optimised energy efficiency", + "topic": "GV-05-2017" +},{ + "projectID": 743702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101027553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 769661, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 747852, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 949059, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 947778, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 825184, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 889633, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865633, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 868462, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 883293, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 854135, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 946602, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851210, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 742158, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101024588, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655282, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 877594, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948112, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 960719, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834175, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 731583, + "title": "Big data PPP: privacy-preserving big data technologies", + "topic": "ICT-18-2016" +},{ + "projectID": 894585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 740934, + "title": "Developing a comprehensive approach to violent radicalization in the EU from early understanding to improving protection", + "topic": "SEC-06-FCT-2016" +},{ + "projectID": 863732, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 883256, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755134, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101030422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 831472, + "title": "Development of a platform for federated and privacy-preserving machine learning in support of drug discovery", + "topic": "IMI2-2018-14-03" +},{ + "projectID": 690425, + "title": "Advancing active and healthy ageing with ICT: Early risk detection and intervention", + "topic": "PHC-21-2015" +},{ + "projectID": 778064, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 686764, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101003397, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 686547, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 878757, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 827753, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101017678, + "title": "Environmental sustainability", + "topic": "SESAR-VLD2-04-2020" +},{ + "projectID": 945263, + "title": "Implementation research for scaling up and transfer of innovative solutions involving digital tools for people-centred care", + "topic": "SC1-DTH-13-2020" +},{ + "projectID": 894241, + "title": "Complexity and Data Science for ATM Performance", + "topic": "SESAR-ER4-03-2019" +},{ + "projectID": 833418, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 687795, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 643045, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 819155, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 865162, + "title": "Camera-based smart sensing system for cabin readiness", + "topic": "JTI-CS2-2018-CfP09-SYS-01-13" +},{ + "projectID": 898203, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 876251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 805542, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 705100, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 884287, + "title": "Automation and CWP", + "topic": "SESAR-ER4-18-2019" +},{ + "projectID": 949899, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 874753, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 656737, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 856213, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101030971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865380, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 755705, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 704698, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 883242, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 744064, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 874707, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 876106, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658614, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799001, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 958637, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 844290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 801451, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 957845, + "title": "Integrated local energy systems (Energy islands)", + "topic": "LC-SC3-ES-3-2018-2020" +},{ + "projectID": 774144, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101020104, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896021, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 692502, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 723430, + "title": "Behavioural aspects for safer transport", + "topic": "MG-3.5-2016" +},{ + "projectID": 101038084, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 896404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 785303, + "title": "Modelling of installed jet noise for UHBR engine integration with forward flight effects", + "topic": "JTI-CS2-2017-CFP06-LPA-01-29" +},{ + "projectID": 732667, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 715037, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 777364, + "title": "DATA QUALITY IN PRECLINICAL RESEARCH AND DEVELOPMENT", + "topic": "IMI2-2016-09-03" +},{ + "projectID": 828141, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750092, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 876228, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813120, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 721362, + "title": "Zero-defect strategies at system level for multi-stage manufacturing in production lines", + "topic": "FOF-03-2016" +},{ + "projectID": 700024, + "title": "Law Enforcement capabilities 2: Detection and analysis of terrorist-related content on the Internet", + "topic": "FCT-06-2015" +},{ + "projectID": 786409, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 966721, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 660711, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 957128, + "title": "Self-assessment and self-optimisation of buildings and appliances for a better energy performance", + "topic": "LC-SC3-B4E-10-2020" +},{ + "projectID": 954933, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 682203, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 793345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 957533, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 640174, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-06-2014" +},{ + "projectID": 810580, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 867739, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 896475, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101033024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 742178, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101032925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 812912, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 707068, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 694630, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 948465, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 899636, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 896716, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854332, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 956713, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 832397, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788893, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 639211, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 670896, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 656273, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 855081, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 966781, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 662822, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 872320, + "title": "PJ.18 W2 4D skyways", + "topic": "SESAR-IR-VLD-WAVE2-09-2019" +},{ + "projectID": 740132, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101027880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715650, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 725937, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 829983, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 832003, + "title": "Adoption of a “Digital Transformation” approach to improve NGCTR design and simulation", + "topic": "JTI-CS2-2018-CfP08-FRC-01-18" +},{ + "projectID": 840842, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 778405, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 854497, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 947747, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 897701, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639276, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 808826, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 865411, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 711392, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 101021629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 883107, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 670467, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 956172, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 727558, + "title": "PCP - eHealth innovation in empowering the patient", + "topic": "SC1-PM-12-2016" +},{ + "projectID": 780315, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 101030384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645012, + "title": "Multimodal and Natural computer interaction", + "topic": "ICT-22-2014" +},{ + "projectID": 748623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 805241, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 799477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 834141, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 885155, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 817639, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 854503, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 894805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654721, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 822214, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 677638, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 637991, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 715530, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 746874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 872843, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866340, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 656988, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 657904, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 715767, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 679774, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 756482, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 765121, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 788368, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 832405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 885203, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 896436, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885682, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 645599, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 721933, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 709073, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 791181, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 699275, + "title": "Trajectory Based Operations (TBO)", + "topic": "Sesar-09-2015" +},{ + "projectID": 787840, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 702579, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 658186, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 772268, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 796917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704330, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 740516, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 882500, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101030992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754705, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 818366, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101001619, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 645244, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 101024712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702527, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 702296, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885273, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 897565, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101002908, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 681579, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 696331, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647289, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 793800, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844844, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681422, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 637302, + "title": "Space Weather", + "topic": "PROTEC-1-2014" +},{ + "projectID": 658997, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 769129, + "title": "Resilience to extreme (natural and man-made) events", + "topic": "MG-7-1-2017" +},{ + "projectID": 780167, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 727982, + "title": "High value-added specialised vessel concepts enabling more efficient servicing of emerging coastal and offshore activities", + "topic": "BG-02-2016-2017" +},{ + "projectID": 676547, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 749461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 947129, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699024, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 696170, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2015" +},{ + "projectID": 720041, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 714918, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 821964, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 783264, + "title": "Optimised ATM Network Services: TBO", + "topic": "SESAR-ER3-03-2016" +},{ + "projectID": 720367, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 739607, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 687490, + "title": "Technology developments for competitive imaging from space", + "topic": "EO-3-2015" +},{ + "projectID": 671657, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 957752, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 700475, + "title": "Crisis management topic 1: potential of current and new measures and technologies to respond to extreme weather and climate events", + "topic": "DRS-01-2015" +},{ + "projectID": 763130, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 705033, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 714776, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 773245, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 885919, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 642258, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 757455, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 660893, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768619, + "title": "Integration of Demand Response in Energy Management Systems while ensuring interoperability through Public Private Partnership (EeB PPP)", + "topic": "EE-12-2017" +},{ + "projectID": 656081, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 649743, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2014" +},{ + "projectID": 732590, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 870452, + "title": "Space Weather", + "topic": "SU-SPACE-22-SEC-2019" +},{ + "projectID": 663915, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 868615, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687537, + "title": "Bringing EO applications to the market", + "topic": "EO-1-2015" +},{ + "projectID": 855142, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892362, + "title": "Environment and Meteorology for ATM", + "topic": "SESAR-ER4-05-2019" +},{ + "projectID": 647018, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 898568, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 700256, + "title": "Crisis management topic 1: potential of current and new measures and technologies to respond to extreme weather and climate events", + "topic": "DRS-01-2015" +},{ + "projectID": 812471, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673354, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 727611, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 699132, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 654663, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 838514, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 728894, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 645677, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 727402, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 638133, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 866633, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718197, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 880218, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654443, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 657690, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 838311, + "title": "Joint programming actions to foster innovative energy solutions", + "topic": "LC-SC3-JA-1-2018" +},{ + "projectID": 685451, + "title": "ERA-NET on Materials (including Materials for Energy)", + "topic": "NMP-14-2015" +},{ + "projectID": 101022686, + "title": "Efficient combination of Concentrated Solar Power and desalination (with particular focus on the Gulf Cooperation Council (GCC) region)", + "topic": "LC-SC3-RES-20-2020" +},{ + "projectID": 826379, + "title": "Thermochemical Hydrogen Production from Concentrated Sunlight", + "topic": "FCH-02-4-2018" +},{ + "projectID": 697197, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 667942, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 686008, + "title": "Extended in-service service of advanced functional materials in energy technologies (capture, conversion, storage and/or transmission of energy)", + "topic": "NMP-16-2015" +},{ + "projectID": 662116, + "title": "New innovative approaches to reactor safety", + "topic": "NFRP-03-2014" +},{ + "projectID": 855159, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664000, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 831756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 814985, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 711935, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 794562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 864660, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 764545, + "title": "Highly flexible and efficient fossil fuel power plants", + "topic": "LCE-28-2017" +},{ + "projectID": 671396, + "title": "Innovative fuel cell systems at intermediate power range for distributed combined heat and power generation", + "topic": "FCH-02.5-2014" +},{ + "projectID": 653941, + "title": "Highly flexible and efficient fossil fuel power plants", + "topic": "LCE-17-2015" +},{ + "projectID": 792946, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 661527, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 898053, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655890, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 948590, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 753002, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886037, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 665522, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 794296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 897420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 800318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 810104, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 749059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101015478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846794, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 790274, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101028365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 677209, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101003406, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 751474, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 814030, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101023060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 813528, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 637853, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 890779, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707352, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724261, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 679243, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 669926, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 897033, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 844211, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 680766, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 757909, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 743605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 661451, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 641346, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 845158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 769065, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 819941, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 748315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949506, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 804108, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101023676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 865805, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 865466, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 714073, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 755196, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 708051, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 770854, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 840252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758124, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 886216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 851356, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 749755, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833613, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 750180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 866903, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899708, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 799112, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 647055, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 957443, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 699829, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 638712, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 794059, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101023654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747810, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 662853, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 655801, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 641232, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 841783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797497, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701013, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 670958, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 756471, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 805230, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101020769, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101028466, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 639313, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 789553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 640553, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101027897, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665349, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 648321, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 792130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 729194, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 755695, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 682586, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 795175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 948464, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 948804, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 680574, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 839561, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860713, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 864104, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 733057, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 789384, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 875197, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 824060, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 844441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 885382, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 694825, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 801060, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 805072, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 948655, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 694996, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 647714, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 675712, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 712445, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015" +},{ + "projectID": 647148, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101024062, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844306, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 735040, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 794162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 861389, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 772280, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 659715, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 785917, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 740469, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 792305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705417, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 693630, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 679881, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 966740, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 680600, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 101029853, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724517, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101030711, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 885065, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 647328, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 716358, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101002927, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 677268, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 833309, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 964203, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 724489, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 736254, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 852482, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 820102, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 966841, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 827023, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101021133, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101031734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724022, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 670412, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 796883, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 837547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758588, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 850424, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 813223, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 883071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 846476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 639343, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 705984, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 750621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740329, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 798736, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 803630, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 810131, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 867414, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 757922, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 838621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 804261, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 832294, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 682256, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 867561, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851065, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 793417, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 781541, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 660523, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 642083, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 638898, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 894933, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 646671, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 779340, + "title": "Clinical research on regenerative medicine", + "topic": "SC1-PM-11-2016-2017" +},{ + "projectID": 896910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749346, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 895744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 846291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742637, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 758887, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 750469, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 843247, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024467, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 645754, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 718569, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 744866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803704, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 772365, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 755471, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 778133, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 756996, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 818696, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 677313, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 786674, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 690939, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 949081, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 802494, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 716677, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 635759, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 799000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 804249, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 829282, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873127, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 656842, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705705, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 745646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833254, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 896183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 681505, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 695646, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 670283, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 657566, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 842067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030684, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 786433, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 748760, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885606, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 884281, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 795109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797801, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 752438, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 948334, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 957581, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 749631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 683305, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 838672, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 772190, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 850820, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 844070, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 773911, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 802644, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 702476, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 672434, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 101029626, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 638278, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 714793, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 676835, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 639020, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 833867, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101003374, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 753958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 887907, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706499, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860592, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101026821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 718711, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5b-2015" +},{ + "projectID": 885539, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 953844, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895501, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703160, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 874650, + "title": "Towards a next generation influenza vaccine to protect citizens worldwide – an EU-India collaboration", + "topic": "SC1-BHC-32-2019" +},{ + "projectID": 883798, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 862137, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 646122, + "title": "Scale-up of nanopharmaceuticals production", + "topic": "NMP-08-2014" +},{ + "projectID": 799017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 659279, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682539, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 970931, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 656306, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838548, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 823879, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 101024945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 714023, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101001854, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 851179, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 950230, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101031624, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890644, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101001613, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 711761, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 771201, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 705587, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715441, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 748170, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862028, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 678119, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 787157, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 703117, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101002258, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 708056, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101007939, + "title": "Handling of protein drug products and stability concerns", + "topic": "IMI2-2020-20-06" +},{ + "projectID": 671208, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 703085, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 787241, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 647981, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 885579, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 659174, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 766747, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 872212, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 642881, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 665656, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 708321, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 889190, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680873, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 890507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 952333, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 894106, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660349, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655271, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 951275, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 723863, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 727444, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 661401, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 801750, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 677972, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 788143, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 647618, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 647858, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 677696, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 831783, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 679714, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101031051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704459, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 797077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 881025, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867459, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 648030, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 635770, + "title": "Downstream processes unlocking biotechnological transformations", + "topic": "BIOTEC-4-2014" +},{ + "projectID": 896422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024294, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 875129, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 657479, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660077, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 835692, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 669612, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 863589, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 855292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 671027, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 825803, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 771813, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 840729, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 716233, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 669351, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 748035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 639907, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 652745, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 773083, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 788704, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 696373, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015-1" +},{ + "projectID": 790236, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101004032, + "title": "Copernicus evolution: Research activities in support of the evolution of the Copernicus services", + "topic": "LC-SPACE-18-EO-2020" +},{ + "projectID": 747487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647989, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 772462, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 747600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101028893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 761705, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 654936, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 715691, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 657331, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705805, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 746421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852985, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 101029270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 825586, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 706272, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 898006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 802123, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 875525, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 872195, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 802817, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 844807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 958660, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 826909, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 795180, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705602, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 949607, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 864068, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 724932, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 759139, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101023196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 683191, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 882830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865408, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647806, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 896102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691119, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 897843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 770244, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 675671, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 702574, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101008041, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 753000, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 637372, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 845815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 797358, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 950133, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101027512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895111, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 640275, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 679189, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 680324, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 891068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655516, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816856, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 682818, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 659271, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824946, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 856130, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 780440, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 827874, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 792692, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677673, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 895887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 790615, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 658554, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752932, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 745723, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748516, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 802830, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 842881, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894207, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 715207, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 693021, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 704098, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 842333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 684366, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 964553, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 665020, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 896865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 766603, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 703143, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 803048, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 888430, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 893418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819314, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 749732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 861194, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 648038, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 681094, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2015" +},{ + "projectID": 101029269, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841560, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101030900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 744115, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 640012, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 647548, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 654812, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 788972, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 818858, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 715069, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 799440, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 825796, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 894574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 719768, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 694539, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 885864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101000852, + "title": "Innovative agri-food value chains: boosting sustainability-oriented competitiveness", + "topic": "RUR-06-2020" +},{ + "projectID": 647077, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 669237, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 772027, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 761612, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 798245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704848, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 868154, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666732, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 716058, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 724425, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101020432, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 948750, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 883551, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 796443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786834, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 709293, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715062, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101029147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 804581, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 858014, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 656455, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 748585, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 788259, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 867865, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875677, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 790085, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 866056, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 891551, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888862, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 888997, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101028935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655297, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101031744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899942, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 883742, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 755191, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101033291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 875673, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 703954, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 703340, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 652132, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 637456, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101024268, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 726049, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 895210, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658971, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 637987, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 747392, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 789573, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101019765, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 858543, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875875, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677786, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101030656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 947819, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101025342, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 899163, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 744621, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 642793, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 835577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 724373, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 682496, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 752595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 864528, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 726417, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101020135, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 737089, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101023947, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 863911, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 894862, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705041, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 863503, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709380, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 742112, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 658986, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 678899, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101002812, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 716509, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 838478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 802899, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101038091, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 643580, + "title": "Clinical research on regenerative medicine", + "topic": "PHC-15-2014" +},{ + "projectID": 846827, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 648432, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 664918, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 727726, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 648580, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 865459, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 798214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749666, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 706378, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 883687, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 637877, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 702346, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101032071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 731957, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 796345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 649124, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 656644, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 653997, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895664, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 948811, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 637295, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 750248, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 792866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101029099, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657990, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 788575, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 802960, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 708899, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 757729, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 647257, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101027731, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101028908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 852674, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 795892, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 704281, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647278, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 893597, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 694323, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 899863, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 711286, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 753954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 787115, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 724482, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 656843, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 832601, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 745988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 758752, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 720728, + "title": "Valorisation of agricultural residues and side streams from the agro-food industry", + "topic": "BBI.VC3.D5-2015" +},{ + "projectID": 654294, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 665651, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 739874, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 853425, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 950262, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 832787, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 794629, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 701397, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 766544, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 677500, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 699718, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 732482, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 853323, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 895144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798851, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 669686, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 700276, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655854, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723997, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 703387, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 639750, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 648201, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 839230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 810207, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 819531, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 778245, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 864246, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 759226, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 740460, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 708130, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 739679, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 707472, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659446, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 659030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 803714, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 835776, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 840592, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 788546, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 787971, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 819823, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 656514, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 895944, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 714739, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 768415, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 952334, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 660958, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 816210, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771419, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 789815, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 841661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 865710, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 658536, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 774321, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 835589, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 885093, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 839178, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 658116, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 800274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 786459, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890479, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 711866, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 676832, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 660128, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694733, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 655295, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 665770, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 669007, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 101002859, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 670823, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 795567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 751954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 759585, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 638988, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 843044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792383, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 823780, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 956097, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 639478, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 948783, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 746631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 787514, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101028461, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 743165, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 892398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 957643, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 686637, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 950617, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 862704, + "title": "Alternative proteins for food and feed", + "topic": "LC-SFS-17-2019" +},{ + "projectID": 844872, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677576, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 850405, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 795580, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 772725, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 817438, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821600, + "title": "Pilot programme on a Clinical Compound Bank for Repurposing: Rare/orphan diseases", + "topic": "IMI2-2017-13-15" +},{ + "projectID": 101031022, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101031970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 671083, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 749209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 888580, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 851231, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 804068, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 706985, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804023, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101025429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758757, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 647895, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 802525, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 655059, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 892369, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 638142, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 855423, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788363, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 825761, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 675007, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 747199, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 799300, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703164, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662449, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 771112, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 693087, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 647186, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 635928, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 727672, + "title": "Legumes - transition paths to sustainable legume-based farming systems and agri-feed and food chains", + "topic": "SFS-26-2016" +},{ + "projectID": 101022421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 733515, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 703589, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 715024, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 735404, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 837863, + "title": "Develop functional molecules for bio-based coatings outperforming existing products and meeting market requirements", + "topic": "BBI.2018.SO3.R9" +},{ + "projectID": 759120, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101038075, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 888016, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702563, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 867426, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 823566, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836086, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 660516, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 801659, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 657739, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 825359, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101002656, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 833792, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 637878, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 951329, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 856118, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 715895, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 661415, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 753138, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897958, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655157, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 746208, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648936, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 750335, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 764434, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 725642, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 707511, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 844194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695032, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101002280, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 695295, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 799399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 745007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001374, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 788697, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 734931, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 694694, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 840262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101023887, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660331, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 896441, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 702236, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026765, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 835103, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 657465, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 697015, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 681630, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 862204, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 894115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794377, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724209, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 749510, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 681524, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 694466, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 852832, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 951644, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 655542, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895164, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798696, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 724349, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 839075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 752069, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724040, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 882231, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 897316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787679, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 766972, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 639125, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 661616, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 772230, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 680042, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 746515, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 657682, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 634013, + "title": "Development of new diagnostic tools and technologies: in vitro devices, assays and platforms", + "topic": "PHC-10-2014" +},{ + "projectID": 842200, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 951430, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 677677, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 851963, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655027, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660156, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101032608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 682181, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 638001, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 686841, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 656873, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101024158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 790429, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 832620, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 963953, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101024747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 864971, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 758108, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101030020, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 757919, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 838104, + "title": "Large-scale production of proteins for food and feed applications from alternative, sustainable sources", + "topic": "BBI.2018.SO3.F2" +},{ + "projectID": 886219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 842402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 887412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101033534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 671174, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 773260, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 894893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 708500, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 745676, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 755150, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 950655, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 841689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101023923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703907, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 747391, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 796866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101038074, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 666440, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 101001734, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 833420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 681440, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101003275, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 726797, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 844972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 955623, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 701664, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 795695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707203, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 852880, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 659025, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 884148, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 690901, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101028078, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022896, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 951723, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 893910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 683610, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015" +},{ + "projectID": 637763, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 891733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839753, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101018257, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 656318, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 864672, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 886536, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 704070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701309, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897220, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724804, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 895529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771035, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 638178, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 844602, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 757563, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 742259, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 963639, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101020342, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 839389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 789128, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101021493, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 725004, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 801936, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 646451, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 801436, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 890900, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 758313, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101029446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647938, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 656359, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101019499, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 635597, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 101032562, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 890218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701473, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 794700, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 757507, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 657492, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 772049, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 834120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 758132, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 825763, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 655623, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 752349, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 774906, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 757810, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 840567, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 744848, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 775922, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 725836, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 893196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734434, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 866238, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 660155, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 877280, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744677, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 896416, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707138, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 813766, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101030442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 665335, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 748880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 869943, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 771965, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 893818, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695067, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 897131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 707336, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 677013, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101021361, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 884114, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 663613, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 898218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819318, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 757600, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 897911, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 960137, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771209, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 843702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 636855, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 754745, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101018683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754365, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 766048, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 658706, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101003390, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 737637, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 842480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896320, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 755876, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101022975, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703872, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678169, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 656636, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 798068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 745934, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 703519, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 751547, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101001394, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 788982, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 889922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795605, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 758161, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759145, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 844622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 770988, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 726436, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101001615, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 884511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 839243, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743546, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 948972, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 639005, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 875297, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 834274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 743290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740230, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 796010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890936, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 715313, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 753328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 899155, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 695551, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 778424, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 679799, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 634479, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 867360, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 701130, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 741966, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 742210, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 884324, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950480, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 671839, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 638273, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101000997, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 657079, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 801406, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101019560, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101021496, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 707092, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 816062, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753054, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 812867, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101024030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 790142, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 832703, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 701986, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 677555, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 964593, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 753351, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101010113, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 752901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897584, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101029907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 838400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 678350, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 882631, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 838252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 793653, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659021, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 675899, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 802001, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 891382, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885711, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 654985, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 788442, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 692333, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 882941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 888322, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 794259, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797621, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896610, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639300, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 890681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788194, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 658126, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101038073, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 707478, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 793482, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 793749, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 894191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892857, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759517, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 693949, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 889451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 798637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 894837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759006, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 815882, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895107, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955575, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 898878, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746509, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 704263, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 789182, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 800556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 842394, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 724321, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 839036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 676844, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 772441, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 954360, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835715, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 753528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945700, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 802217, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 879673, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736304, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 656243, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101025619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706170, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 790144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 747993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 741964, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 877747, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 855923, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 816185, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101031265, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 883387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 801374, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 865694, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101031986, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101038098, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 677532, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 742712, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 678905, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 757913, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 715243, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 818878, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 668953, + "title": "Protein products from plant residues", + "topic": "BBI.VC3.R7" +},{ + "projectID": 659615, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 833713, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 852451, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 837028, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101028239, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670301, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 816846, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895786, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 860229, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 842919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 643056, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 818312, + "title": "Integrated system innovation in valorising urban biowaste", + "topic": "CE-SFS-25-2018" +},{ + "projectID": 789962, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 883684, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 680375, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 670555, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 886577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 818556, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 890595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027864, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 725685, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 954305, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010029, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 884316, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 648268, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 669415, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 694386, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 681365, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 654719, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 684709, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 647215, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 713755, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 654882, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891959, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 846916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 672653, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 683108, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 705939, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101002582, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 864578, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 793778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 795250, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 883240, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 891550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 834279, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 862246, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 893772, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 101038087, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 754802, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 819219, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 814645, + "title": "Synthetic biology to expand diversity of nature's chemical production (RIA)", + "topic": "BIOTEC-03-2018" +},{ + "projectID": 725554, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 796341, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 697211, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 852915, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 750928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 660083, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 772168, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 795070, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002571, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 883370, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 805500, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 751404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 847826, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 702298, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 792329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 819039, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 894987, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 866345, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 803326, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 837703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 704383, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 778092, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 757593, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 691661, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 893859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 661852, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 768291, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 764089, + "title": "New knowledge and technologies", + "topic": "LCE-06-2017" +},{ + "projectID": 727330, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 727509, + "title": "Support to the energy stakeholders to contribute to the SET-Plan", + "topic": "LCE-36-2016-2017" +},{ + "projectID": 841703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 751843, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101008984, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 886776, + "title": "Demonstrate bio-based pesticides and/or biostimulant agents for sustainable increase in agricultural productivity", + "topic": "BBI-2019-SO3-D4" +},{ + "projectID": 953214, + "title": "Upcycling Bio Plastics of food and drinks packaging (RIA)", + "topic": "CE-BIOTEC-09-2020" +},{ + "projectID": 760802, + "title": "Optimisation of biocatalysis and downstream processing for the sustainable production of high value-added platform chemicals", + "topic": "BIOTEC-06-2017" +},{ + "projectID": 808747, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 643322, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 882510, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730378, + "title": "New models and economic incentives for circular economy business", + "topic": "CIRC-04-2016" +},{ + "projectID": 739574, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 836312, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886415, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887432, + "title": "Apply technological combinations to valorise all components of biomass feedstock", + "topic": "BBI-2019-SO2-F2" +},{ + "projectID": 101029353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 644715, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 948829, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 645994, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 661198, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 764799, + "title": "Market uptake of renewable energy technologies", + "topic": "LCE-21-2017" +},{ + "projectID": 636865, + "title": "Adaptable industrial processes allowing the use of renewables as flexible feedstock for chemical and energy applications", + "topic": "SPIRE-02-2014" +},{ + "projectID": 101007733, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 666644, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 753412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 838120, + "title": "Produce sustainable and cost-efficient high-performance functional ingredients from alternative sources", + "topic": "BBI.2018.SO3.D5" +},{ + "projectID": 684901, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 815259, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 650716, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 727531, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 735368, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 683997, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 744821, + "title": "International Cooperation with Brazil on advanced lignocellulosic biofuels", + "topic": "LCE-22-2016" +},{ + "projectID": 836514, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698494, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 735430, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 792216, + "title": "Enabling pre-commercial production of advanced aviation biofuel", + "topic": "LCE-20-2016-2017" +},{ + "projectID": 817903, + "title": "Contracts for effective and lasting delivery of agri-environmental public goods", + "topic": "RUR-03-2018" +},{ + "projectID": 734137, + "title": "Energy", + "topic": "Energy" +},{ + "projectID": 882623, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887674, + "title": "Produce high-performance bio-based alternatives to harmful products or processes to protect and enhance human health and the environment", + "topic": "BBI-2019-SO3-F3" +},{ + "projectID": 733487, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 775720, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 691874, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 696140, + "title": "Development and market roll-out of innovative energy services and financial schemes for sustainable energy", + "topic": "EE-21-2015" +},{ + "projectID": 834923, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 835472, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 773430, + "title": "Demonstration of system integration with smart transmission grid and storage technologies with increasing share of renewables", + "topic": "LCE-04-2017" +},{ + "projectID": 823392, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 863885, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761812, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 762937, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101036900, + "title": "Accelerating the green transition and energy access Partnership with Africa", + "topic": "LC-GD-2-3-2020" +},{ + "projectID": 673771, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 669065, + "title": "Chemical building blocks and value-added materials through integrated processing of wood", + "topic": "BBI.VC1.D2" +},{ + "projectID": 848596, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674065, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 757995, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 887226, + "title": "Improve biorefinery operations through process intensification and new end products", + "topic": "BBI-2019-SO2-R6" +},{ + "projectID": 807221, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 706781, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 859096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861842, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 101032596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 662195, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 711007, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101003438, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 697720, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 666712, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 101022985, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 744603, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 810755, + "title": "ERA Chairs", + "topic": "WIDESPREAD-03-2017" +},{ + "projectID": 727463, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 735818, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 641229, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 896901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862834, + "title": "Circular bio-based business models for rural communities", + "topic": "CE-RUR-10-2019" +},{ + "projectID": 892614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792061, + "title": "Integrated ‘zero waste’ biorefinery utilising all fractions of the feedstock for production of chemicals and materials", + "topic": "BBI.2017.F1" +},{ + "projectID": 697958, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 692173, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Australia, USA, Brazil, South Africa, Ukraine", + "topic": "INT-01-2015" +},{ + "projectID": 646457, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 646443, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 655771, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 663811, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 698947, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 691637, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2015" +},{ + "projectID": 811529, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664557, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 783727, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 837866, + "title": "Valorise sugars from the cellulosic and/or hemicellulosic fractions of lignocellulosic biomass", + "topic": "BBI.2018.SO2.D3" +},{ + "projectID": 710454, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 685184, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2015-1" +},{ + "projectID": 861856, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 825179, + "title": "Support to sectorial fora", + "topic": "LC-SC3-CC-4-2018" +},{ + "projectID": 842993, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101009401, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 727476, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 867622, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815284, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 764697, + "title": "CCS in industry, including Bio-CCS", + "topic": "LCE-29-2017" +},{ + "projectID": 834394, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 796283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 896043, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 807140, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 720755, + "title": "Valorisation of aquatic biomass", + "topic": "BBI.VC3.R9-2015" +},{ + "projectID": 785171, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 720708, + "title": "Innovative efficient biorefinery technologies", + "topic": "BBI.R10-2015" +},{ + "projectID": 827977, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785014, + "title": "Improving the performance of inefficient district heating networks", + "topic": "EE-02-2017" +},{ + "projectID": 772584, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101026650, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 672596, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 726165, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101027061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773753, + "title": "Monitoring and assessing fish stocks, other pelagic species and habitats with an automated, non-invasive, opto-acoustic system.", + "topic": "BG-14-2017" +},{ + "projectID": 818083, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 727616, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 884111, + "title": "Development of next generation biofuel and alternative renewable fuel technologies for aviation and shipping", + "topic": "LC-SC3-RES-23-2019" +},{ + "projectID": 818012, + "title": "Increased performance of technologies for local heating and cooling solutions", + "topic": "LC-SC3-RES-5-2018" +},{ + "projectID": 664599, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 101025906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 876142, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 733664, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 952872, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 736683, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 818135, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 840836, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 820554, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 651441, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 747968, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 866736, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701028, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 752941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 646495, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2014" +},{ + "projectID": 675325, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 951231, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 857806, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 691763, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 888003, + "title": "Produce bio-based functional ingredients and additives for high-end markets", + "topic": "BBI-2019-SO3-D3" +},{ + "projectID": 661496, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 738569, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 735743, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 731695, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 815147, + "title": "Developing solutions to reduce the cost and increase performance of renewable technologies", + "topic": "LC-SC3-RES-11-2018" +},{ + "projectID": 662792, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 727961, + "title": "Demonstration of integrated logistics centres for food and non-food applications", + "topic": "RUR-08-2016" +},{ + "projectID": 633531, + "title": "Genetics and nutrition and alternative feed sources for terrestrial livestock production", + "topic": "SFS-01a-2014" +},{ + "projectID": 760551, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101022685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758653, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101022432, + "title": "International cooperation with Canada on advanced biofuels and bioenergy", + "topic": "LC-SC3-RES-36-2020" +},{ + "projectID": 703978, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 669055, + "title": "Efficient pre-treatment of lignocellulosic feedstock to advanced bio-based chemicals and biomaterials", + "topic": "BBI.VC1.R1" +},{ + "projectID": 743880, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 641585, + "title": "Releasing the potential of EGNSS applications through international cooperation", + "topic": "GALILEO-3-2014" +},{ + "projectID": 668467, + "title": "Fibres and polymers from lignin", + "topic": "BBI.VC2.R4" +},{ + "projectID": 730400, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 810186, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 662476, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 673566, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 691846, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 808944, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 792050, + "title": "Proteins and other bioactive ingredients from side streams and residues", + "topic": "BBI.2017.R4" +},{ + "projectID": 744330, + "title": "Optimise technical production routes to bio-based chemicals in bio- or chemo-catalytic processes", + "topic": "BBI-2016-D07" +},{ + "projectID": 876643, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731263, + "title": "European Common Research and Innovation Agendas (ECRIAs) in support of the implementation of the SET Action Plan", + "topic": "LCE-33-2016" +},{ + "projectID": 795091, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 761481, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 959109, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 751774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 792004, + "title": "Innovative technologies for the pre-treatment and separation of lignocellulosic feedstock and complex composition streams into valuable fractions while maintaining key characteristics", + "topic": "BBI.2017.R2" +},{ + "projectID": 774578, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 680900, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 893040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875015, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 815821, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101000527, + "title": "Closing nutrient cycles", + "topic": "CE-RUR-08-2018-2019-2020" +},{ + "projectID": 728290, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 778065, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 654365, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2015" +},{ + "projectID": 886309, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 723070, + "title": "Industrial technologies for the valorisation of European bio-resources into high added value process streams", + "topic": "SPIRE-03-2016" +},{ + "projectID": 764734, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 654446, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 739757, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101017902, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 655159, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661041, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660030, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724750, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 851143, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 796245, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660426, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 707348, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101027045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949017, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 802727, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 635405, + "title": "Renewable oil crops as a source of bio-based products", + "topic": "ISIB-05-2014" +},{ + "projectID": 832326, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 714934, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 828835, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 703666, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647003, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 949808, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 690853, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 653354, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706965, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799522, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 825713, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 804144, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 734708, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 793158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 875488, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 743016, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 862506, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 793830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 638536, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 894378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 748830, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867473, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 701949, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704647, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 773089, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 695511, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 859055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654924, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 669941, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 798966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 951146, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 878896, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 838321, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 707922, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787534, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 694569, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 793324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101033275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 758913, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 748889, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 964248, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 765115, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 663292, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 772032, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101002525, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 749926, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 946409, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 670115, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 825936, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 654154, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705452, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 964386, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 648974, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 752903, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101032316, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101029456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 658227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 796687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 783638, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 798739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 791547, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 669723, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 692511, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 695078, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 838205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 828381, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778319, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 852457, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 681434, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 745316, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 898685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 679173, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 666676, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 728932, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 804418, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 751715, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 740942, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101024503, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 887019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747208, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 862537, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 704491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 658932, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 679239, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 797949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661340, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 746183, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 726116, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 758334, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 812890, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 787041, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 793957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 638965, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 752325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 701708, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647410, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 852152, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 708972, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 751865, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 816908, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811792, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 839802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661214, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 717852, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 946228, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 803526, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101028297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746974, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659793, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 892764, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789399, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855088, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 890822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 661491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 765423, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 772923, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 746137, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852136, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 659907, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656157, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101030636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 893075, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 666666, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 896908, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845036, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 770835, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 745689, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 658091, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707270, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101019594, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 646604, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 768398, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 659571, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101027065, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 750409, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101003052, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 771714, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 892532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660258, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 790397, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101024631, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 755889, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 834161, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 739682, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 656442, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896745, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656817, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 864751, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 856404, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 866338, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101022536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 794636, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 844854, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695214, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 966788, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 658851, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001237, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 654818, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 702715, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 700309, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 637640, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 655508, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707154, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101009882, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 645686, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 101003409, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 673797, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 797788, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892333, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 732592, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 750860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 803676, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 724281, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 753487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 788974, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 709613, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 641639, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 679116, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 655660, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101030628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101018465, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101003358, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 896263, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705287, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 839032, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 753236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 803952, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 641322, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101024542, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 115881, + "title": "Assessing Risk and Progression of Prediabetes and Type 2 Diabetes to Enable Disease Modification", + "topic": "IMI2-2015-03-02" +},{ + "projectID": 843407, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 703132, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843723, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 720824, + "title": "Microbial chassis platforms with optimized metabolic pathways for industrial innovations through systems biology", + "topic": "BIOTEC-03-2016" +},{ + "projectID": 101028473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 641317, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 884488, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 807931, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 677661, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 866011, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 707297, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705913, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 836073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 640923, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 761030, + "title": "Optimisation of biocatalysis and downstream processing for the sustainable production of high value-added platform chemicals", + "topic": "BIOTEC-06-2017" +},{ + "projectID": 704867, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 896904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647144, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 842577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 788508, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 864788, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 720743, + "title": "High purity bio-based intermediates and end products from vegetable oils and fats", + "topic": "BBI.VC3.D4-2015" +},{ + "projectID": 837951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 648871, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101001097, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 682167, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 706551, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101033286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647928, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 748058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 788954, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 672761, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 798510, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 727359, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 732640, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 638290, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 795415, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 673467, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 762343, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 951324, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101029916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789054, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 851908, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 845185, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 638426, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 675407, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 841150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779896, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 834809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 899088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 799376, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 839177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 744021, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 657650, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 633765, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 101018013, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 759840, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 703639, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 781726, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 839899, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715737, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 816663, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865157, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 678901, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 792508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 641342, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 665317, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 796009, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 796307, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 711406, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 894296, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658953, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694633, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101018739, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 640389, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 802209, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101001470, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 839315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896068, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 793644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 746435, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 797150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 747536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101031375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 790956, + "title": "Proteins and other bioactive ingredients from side streams and residues", + "topic": "BBI.2017.R4" +},{ + "projectID": 705609, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 800446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 820892, + "title": "Raw materials policy support actions for the circular economy", + "topic": "CE-SC5-08-2018-2019-2020" +},{ + "projectID": 752252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 751637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 840395, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 695539, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 659677, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 844891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 857394, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 705853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 804199, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 956248, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 714983, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 896219, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 677513, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 706072, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681493, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 638661, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 720777, + "title": "Bioconversion of non-agricultural waste into biomolecules for industrial applications", + "topic": "BIOTEC-02-2016" +},{ + "projectID": 773621, + "title": "Business models for modern rural economies", + "topic": "RUR-09-2017" +},{ + "projectID": 750601, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 689669, + "title": "Integrated approaches to food security, low-carbon energy, sustainable water management and climate change mitigation:", + "topic": "WATER-2b-2015" +},{ + "projectID": 747025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 691192, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 713606, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 669062, + "title": "ERA Chairs", + "topic": "WIDESPREAD-2-2014" +},{ + "projectID": 739800, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 668128, + "title": "Nutrient recovery from biobased waste streams and residues", + "topic": "BBI.VC4.R10" +},{ + "projectID": 754263, + "title": "Bioeconomy Presidency Conference: Innovating for Sustainable Growth: a Bioeconomy for Europe", + "topic": "SC2-Presidency-2016" +},{ + "projectID": 101024593, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101010197, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 757384, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 665947, + "title": "Fostering RRI uptake in current research and innovations systems", + "topic": "GARRI-1-2014" +},{ + "projectID": 652637, + "title": "Supporting National Contact Points for Horizon 2020 Societal Challenge 2 on ‘Food Security, Sustainable Agriculture, Marine and Maritime Research and the Bioeconomy’ and the Key Enabling Technology (KET) ‘Biotechnology’", + "topic": "ISIB-09-2014" +},{ + "projectID": 887501, + "title": "Empower SME clusters to bring SMEs ‘across the valley of death’", + "topic": "BBI-2019-SO4-S4" +},{ + "projectID": 101000681, + "title": "A comprehensive vision for urban agriculture", + "topic": "FNR-03-2020" +},{ + "projectID": 101029444, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 773324, + "title": "ERA-NET Cofund: Public-Public Partnerships in the bioeconomy", + "topic": "SFS-19-2016-2017" +},{ + "projectID": 792221, + "title": "Identify opportunities for ICT to increase the efficiency of biomass supply chains for the bio-based industry", + "topic": "BBI.2017.S2" +},{ + "projectID": 101000373, + "title": "Prospecting aquatic and terrestrial natural biological resources for biologically active compounds", + "topic": "FNR-11-2020" +},{ + "projectID": 723687, + "title": "KET Biotechnology foresight identifying gaps and high-value opportunities for the EU industry", + "topic": "BIOTEC-04-2016" +},{ + "projectID": 101000762, + "title": "Diversifying revenue in rural Africa through bio-based solutions", + "topic": "CE-SFS-36-2020" +},{ + "projectID": 690925, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 774340, + "title": "Organic inputs – contentious inputs in organic farming", + "topic": "SFS-08-2017" +},{ + "projectID": 798365, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 652683, + "title": "Bridging research and innovation efforts for a sustainable bioeconomy", + "topic": "ISIB-08b-2014" +},{ + "projectID": 732064, + "title": "Big Data PPP: Large Scale Pilot actions in sectors best benefitting from data-driven innovation", + "topic": "ICT-15-2016-2017" +},{ + "projectID": 101000847, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 745012, + "title": "Improvement and adaptation of industrial crop varieties and novel sources of biomass to diversify biomass feedstock for biorefineries", + "topic": "BBI-2016-D02" +},{ + "projectID": 655559, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 773702, + "title": "Novel public policies, business models and mechanisms for the sustainable supply of and payment for forest ecosystem services", + "topic": "RUR-05-2017" +},{ + "projectID": 782319, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101000551, + "title": "Agricultural markets and international trade in the context of sustainability objectives", + "topic": "RUR-21-2020" +},{ + "projectID": 847529, + "title": "Bioeconomy Presidency Conference", + "topic": "IBA-SC2-Bioeconomy-2018" +},{ + "projectID": 877565, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 950921, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 720710, + "title": "Lignocellulosic feedstocks into chemical building blocks and high added value products", + "topic": "BBI.VC1.D1-2015" +},{ + "projectID": 101023256, + "title": "Extract bioactive compounds from new, under-exploited and/or recalcitrant residual bio-based streams for high-value applications", + "topic": "BBI-2020-SO2-R4" +},{ + "projectID": 841193, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000836, + "title": "Pilot circular bio-based cities – sustainable production of bio-based products from urban biowaste and wastewater", + "topic": "CE-FNR-17-2020" +},{ + "projectID": 955400, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 713988, + "title": "SCIENCE WAF SOCIETY", + "topic": "SCIENCE WAF SOCIETY" +},{ + "projectID": 690182, + "title": "Raw materials partnerships", + "topic": "WASTE-4d-2015" +},{ + "projectID": 778332, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 735374, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101005937, + "title": "Bottom-up approach to build SwafS knowledge base", + "topic": "SwafS-31-2020" +},{ + "projectID": 949269, + "title": "Bioeconomy Presidency Conference", + "topic": "IBA-SC2-Bioeconomy-2019" +},{ + "projectID": 652599, + "title": "Public procurement networks on innovative bio-based products", + "topic": "ISIB-07-2014" +},{ + "projectID": 101034323, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 711602, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 101023306, + "title": "Resolve supply-chain hurdles for turning residual waste streams into functional molecules for food and/or non-food market applications", + "topic": "BBI-2020-SO1-D1" +},{ + "projectID": 862674, + "title": "Circular bio-based business models for rural communities", + "topic": "CE-RUR-10-2019" +},{ + "projectID": 862681, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 887115, + "title": "Develop breakthrough technologies to improve the cost-effectiveness and sustainability of pre-treatment steps within biorefining operations", + "topic": "BBI-2019-SO2-R2" +},{ + "projectID": 722361, + "title": "ERA-NET Cofund on Biotechnologies", + "topic": "BIOTEC-01-2016" +},{ + "projectID": 859770, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656760, + "title": "The human factor in the energy system", + "topic": "LCE-20-2014" +},{ + "projectID": 887070, + "title": "Shaping the bio-based economy through a participatory approach", + "topic": "BBI-2019-SO4-S3" +},{ + "projectID": 745719, + "title": "Open-innovation Platform strengthening cooperation and joint development of bio-based industries and downstream sectors", + "topic": "BBI-2016-S03" +},{ + "projectID": 652682, + "title": "Engaging society, reaching end users and linking with policy makers for a participative governance of the bioeconomy", + "topic": "ISIB-08a-2014" +},{ + "projectID": 873468, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 691748, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 727740, + "title": "Sustainability schemes for the bio-based economy", + "topic": "BB-01-2016" +},{ + "projectID": 845419, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 782075, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101003553, + "title": "Monitoring ecosystems through research, innovation and technology", + "topic": "SC5-33-2020" +},{ + "projectID": 101000470, + "title": "Industrial microbiomes – learning from nature", + "topic": "FNR-12-2020" +},{ + "projectID": 637760, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 699659, + "title": "INFRA", + "topic": "INFRA" +},{ + "projectID": 788489, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 792054, + "title": "Proteins and other bioactive ingredients from side streams and residues", + "topic": "BBI.2017.R4" +},{ + "projectID": 860477, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 714055, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 792195, + "title": "Advanced bio-based fibres and materials for large-volume applications", + "topic": "BBI.2017.D5" +},{ + "projectID": 773297, + "title": "Towards a method for the collection of statistical data on bio-based industries and bio-based products", + "topic": "BB-02-2017" +},{ + "projectID": 897655, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 837858, + "title": "Benefit from previous and current work to create a coherent and stimulating ‘environment’ for a sustainable bio-based industry in Europe", + "topic": "BBI.2018.SO4.S1" +},{ + "projectID": 101004572, + "title": "Centres/Networks of European research and innovation: follow-up of the CEBRABIC action", + "topic": "IBA-SC6-CEBRABIC-2020" +},{ + "projectID": 894088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657361, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 893588, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 872102, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101023334, + "title": "Use enabling technologies to improve feedstock availability and sustainability for the bio-based industry", + "topic": "BBI-2020-SO2-R1" +},{ + "projectID": 838087, + "title": "Expand the bio-based industry across Europe", + "topic": "BBI.2018.SO4.S2" +},{ + "projectID": 814029, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101000289, + "title": "Forest soils Research and Innovation Action", + "topic": "LC-SFS-22-2020" +},{ + "projectID": 101000519, + "title": "A network of European bioeconomy clusters to advance bio-based solutions in the primary production sector", + "topic": "CE-FNR-15-2020" +},{ + "projectID": 773501, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 675153, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 720685, + "title": "Standards and regulations", + "topic": "BBI.S1-2015" +},{ + "projectID": 773499, + "title": "Better understanding the challenges facing agriculture and the impacts of policies - A European platform to support modelling in agriculture", + "topic": "SFS-49-2017" +},{ + "projectID": 897284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 644564, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 101023280, + "title": "Valorise the organic fraction of municipal solid waste through an integrated biorefinery at commercial level", + "topic": "BBI-2020-SO1-F1" +},{ + "projectID": 761885, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 642836, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 704261, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818478, + "title": "Realising the potential of regional and local bio-based economies", + "topic": "RUR-09-2018" +},{ + "projectID": 818351, + "title": "Realising the potential of regional and local bio-based economies", + "topic": "RUR-09-2018" +},{ + "projectID": 862699, + "title": "Support to the BIOEAST initiative: boosting knowledge and innovation-based bioeconomies", + "topic": "RUR-18-2019" +},{ + "projectID": 837310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 657750, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101000539, + "title": "Public engagement for the Bioeconomy", + "topic": "FNR-10-2020" +},{ + "projectID": 709557, + "title": "From lignocellulosic feedstock to advanced bio-based chemicals, materials or ethanol", + "topic": "BBI.VC1.F1" +},{ + "projectID": 952374, + "title": "ERA Chairs", + "topic": "WIDESPREAD-06-2020" +},{ + "projectID": 830202, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807317, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 887727, + "title": "Assist brand owners to ‘switch to bio-based’", + "topic": "BBI-2019-SO4-S1" +},{ + "projectID": 101003906, + "title": "Develop and pilot circular systems in plastics, textiles and furniture sectors", + "topic": "CE-SC5-28-2020" +},{ + "projectID": 674710, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 745623, + "title": "A roadmap for the chemical industry to a bioeconomy", + "topic": "BBI-2016-S01" +},{ + "projectID": 718730, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 664018, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 650045, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 664219, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 752730, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846009, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 971619, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 666815, + "title": "SME Instrument", + "topic": "Space-SME-2014-2" +},{ + "projectID": 735017, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 819317, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 707962, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 687871, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 827794, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645274, + "title": "FIRE+ (Future Internet Research & Experimentation)", + "topic": "ICT-11-2014" +},{ + "projectID": 951956, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 883321, + "title": "Digital security, privacy, data protection and accountability in critical sectors", + "topic": "SU-DS05-2018-2019" +},{ + "projectID": 877559, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723395, + "title": "Safety and end-user acceptance aspects of road automation in the transition period", + "topic": "ART-04-2016" +},{ + "projectID": 743996, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 725286, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 646476, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 871449, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 876734, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835826, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730846, + "title": "Shopping, booking and ticketing of multimodal travel solutions", + "topic": "S2R-CFM-IP4-01-2015" +},{ + "projectID": 751250, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 945010, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739628, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 736796, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 815043, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 898120, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657272, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101004203, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 867152, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 744797, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 642959, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 851876, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 791721, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 633567, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 825631, + "title": "Digital Manufacturing Platforms for Connected Smart Factories", + "topic": "DT-ICT-07-2018-2019" +},{ + "projectID": 878319, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877928, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680902, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 862780, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101017258, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 730983, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 826838, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774817, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 703236, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704733, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 664174, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 717857, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 703333, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101017168, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 822723, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 666496, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 688147, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 101020255, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 763146, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 790340, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 693297, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 728782, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 837292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 796721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 717469, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 101019718, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 747963, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 712689, + "title": "FET Exchange Coordination and Support Activities 2015", + "topic": "FETOPEN-CSA-FETEXCHANGE-2015" +},{ + "projectID": 751823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709835, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 750559, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966703, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 971242, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 868306, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 774392, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 101004346, + "title": "SRC - Space robotics technologies", + "topic": "SPACE-27-TEC-2020" +},{ + "projectID": 739717, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 674659, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 646482, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 760460, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 854423, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864202, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 860410, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 636727, + "title": "Methodologies, tools and indicators for cross-sectorial sustainability assessment of energy and resource efficient solutions in the process industry", + "topic": "SPIRE-04-2014" +},{ + "projectID": 886408, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 654911, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 857237, + "title": "Interoperable and smart homes and grids", + "topic": "DT-ICT-10-2018-19" +},{ + "projectID": 710936, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 822375, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 820774, + "title": "Pilot lines for metal Additive Manufacturing (IA 50%)", + "topic": "DT-FOF-04-2018" +},{ + "projectID": 654220, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 651272, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 637713, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 884025, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864972, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 664230, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 947558, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726904, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 836465, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 696743, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 800150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 705296, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 768338, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 823270, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663957, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 726903, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 634238, + "title": "Comparing the effectiveness of existing healthcare interventions in the elderly", + "topic": "PHC-17-2014" +},{ + "projectID": 720507, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 875067, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 732630, + "title": "Big data PPP: Support, industrial skills, benchmarking and evaluation", + "topic": "ICT-17-2016-2017" +},{ + "projectID": 756079, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 763303, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 764691, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 787034, + "title": "Cybersecurity PPP: Privacy, Data Protection, Digital Identities", + "topic": "DS-08-2017" +},{ + "projectID": 954221, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816091, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 640957, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 850054, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644179, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 855957, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877065, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698000, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 655009, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 867975, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886264, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850104, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761303, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 701032, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 639945, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 959492, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880439, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 643574, + "title": "Bridging the divide in European health research and innovation", + "topic": "HCO-14-2014" +},{ + "projectID": 759207, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 663198, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 820689, + "title": "Effective Industrial Human-Robot Collaboration (RIA)", + "topic": "DT-FOF-02-2018" +},{ + "projectID": 885845, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 826724, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828169, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957480, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 658530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 815989, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711607, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 958205, + "title": "Quality control in smart manufacturing (IA)", + "topic": "DT-FOF-11-2020" +},{ + "projectID": 861398, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 699298, + "title": "Information Management in ATM", + "topic": "Sesar-03-2015" +},{ + "projectID": 697416, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 687528, + "title": "Scientific exploitation of astrophysics, comets, and planetary data", + "topic": "COMPET-05-2015" +},{ + "projectID": 796619, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 757202, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 649836, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 867429, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 883832, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745484, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 101027412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002507, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101026297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 673311, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 896159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 662847, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 799769, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855610, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 726788, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 797494, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 673944, + "title": "SME Instrument", + "topic": "Space-SME-2014-2" +},{ + "projectID": 813278, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 761689, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 711695, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 824433, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 852550, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 656741, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 963904, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 723373, + "title": "Continuous adaptation of work environments with changing levels of automation in evolving production systems", + "topic": "FOF-04-2016" +},{ + "projectID": 851631, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 688386, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 957467, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 952012, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 947471, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 787258, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 836544, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783913, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 768889, + "title": "Cross-cutting KETs for diagnostics at the point-of-care", + "topic": "NMBP-13-2017" +},{ + "projectID": 696535, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 654404, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 646804, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 736876, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 891212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 663056, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 727579, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 855803, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725144, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 799557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 788247, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 685636, + "title": "Aerodynamic and functional design study of a full-fairing semi-watertight concept for an articulated rotor head", + "topic": "JTI-CS2-2014-CFP01-FRC-02-02" +},{ + "projectID": 767235, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 722561, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 871528, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 657951, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 868677, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 808872, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 701007, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 730713, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 773317, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 692987, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 797242, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 890000, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781189, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 728387, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 718275, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 697953, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 771527, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 736167, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 739738, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 877265, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 647885, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 719375, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 854147, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714853, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 780537, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 817251, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 711265, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 808137, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 834146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 642987, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 735091, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 876876, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739733, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 835614, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718742, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 695022, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 710070, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 768049, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101015462, + "title": "Enhancing IP4 Ecosystem", + "topic": "S2R-CFM-IP4-01-2020" +},{ + "projectID": 895377, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 754290, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 723893, + "title": "Affordable weight reduction of high-volume vehicles and components taking into account the entire life-cycle", + "topic": "NMBP-08-2016" +},{ + "projectID": 736461, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 715283, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 719467, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 738402, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 725899, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 885956, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 736831, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 686852, + "title": "Tools development for aerodynamic optimization on engine air intake", + "topic": "JTI-CS2-2014-CFP01-FRC-02-04" +},{ + "projectID": 653762, + "title": "Communication technologies and interoperability topic 2: Next generation emergency services", + "topic": "DRS-19-2014" +},{ + "projectID": 730766, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 851644, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 877256, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684458, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 738291, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 857031, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 880412, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 645360, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 836867, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834049, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702287, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 645463, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 742746, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 824339, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723172, + "title": "5G – Next Generation Communication Networks", + "topic": "EUJ-01-2016" +},{ + "projectID": 807724, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 960060, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 809451, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 723759, + "title": "Novel hybrid approaches for additive and subtractive manufacturing machines", + "topic": "FOF-01-2016" +},{ + "projectID": 755731, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 710145, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 763599, + "title": "Security & cyber-resilience", + "topic": "RPAS-06" +},{ + "projectID": 703999, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 868406, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 751339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 812997, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 782842, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 817285, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854408, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741579, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 694581, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 693521, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 836805, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731885, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 645393, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 741097, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 717953, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 790088, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 831998, + "title": "Health Monitoring for Electro-Hydraulic Actuator fluid", + "topic": "JTI-CS2-2018-CfP08-SYS-02-49" +},{ + "projectID": 855287, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 761536, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 737087, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 723538, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 791757, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 639286, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 685351, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 674335, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 775854, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 885469, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 703376, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 748609, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101003480, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 804476, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 640924, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 800581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740690, + "title": "Cyber Security for SMEs, local public administration and Individuals", + "topic": "DS-02-2016" +},{ + "projectID": 746850, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 961843, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723945, + "title": "Photonics Laser-based production", + "topic": "FOF-13-2016" +},{ + "projectID": 772459, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 887900, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659645, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 773375, + "title": "Innovative solutions for sustainable food packaging", + "topic": "SFS-35-2017" +},{ + "projectID": 839255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 753685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 659860, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 730086, + "title": "SRC - Space Robotics Technologies", + "topic": "COMPET-4-2016" +},{ + "projectID": 960899, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101000169, + "title": "Self-assessment and self-optimisation of buildings and appliances for a better energy performance", + "topic": "LC-SC3-B4E-10-2020" +},{ + "projectID": 816731, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816999, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771820, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 687655, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 890018, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870251, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 728974, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 710384, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 814951, + "title": "Hardening vehicle environmental protection systems against tampering", + "topic": "LC-MG-1-4-2018" +},{ + "projectID": 732391, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 702784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 709501, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 824735, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 648328, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 731711, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 829846, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731678, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 768790, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 957212, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 761592, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 887525, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825829, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 709328, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 957538, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 780351, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 866607, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 885458, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887303, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 886899, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779754, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 642354, + "title": "Dissemination and exploitation, ICT, knowledge, gaps, research needs, etc", + "topic": "WATER-4a-2014" +},{ + "projectID": 781524, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 688241, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 697330, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 739649, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 875834, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811499, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 639889, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 744795, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 772568, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 728126, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 964854, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 895478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 867018, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 813152, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 781829, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 734971, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 754494, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 752822, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 755615, + "title": "Validation tests of electromechanical actuators and its dedicated control units at TRL 6 level", + "topic": "JTI-CS2-2016-CFP04-SYS-02-22" +},{ + "projectID": 787703, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 851811, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 700199, + "title": "Information driven Cyber Security Management", + "topic": "DS-04-2015" +},{ + "projectID": 759661, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 737858, + "title": "EU-Japan cooperation on Novel ICT Robotics based solutions for active and healthy ageing at home or in care facilities", + "topic": "SC1-PM-14-2016" +},{ + "projectID": 641661, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 732111, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 889360, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833671, + "title": "Human factors, and social, societal, and organisational aspects for disaster-resilient societies", + "topic": "SU-DRS01-2018-2019-2020" +},{ + "projectID": 954282, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 746398, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 670227, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 854781, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 664078, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 748328, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 671564, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 780783, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 952135, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 774475, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 812543, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 695412, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 824127, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672479, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 635874, + "title": "Fostering synergies alongside the supply chain (including e.commerce)", + "topic": "MG-6.1-2014" +},{ + "projectID": 832242, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 958832, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 671705, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 737566, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 723764, + "title": "Zero-defect strategies at system level for multi-stage manufacturing in production lines", + "topic": "FOF-03-2016" +},{ + "projectID": 685043, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 827134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698729, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 789850, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 854157, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025833, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834308, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 726878, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 727477, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 778586, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 827302, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101010233, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 673011, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 687691, + "title": "Big data - research", + "topic": "ICT-16-2015" +},{ + "projectID": 890462, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 696009, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2015" +},{ + "projectID": 790926, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 684584, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 762609, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 889490, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823958, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 636126, + "title": "Towards seamless mobility addressing fragmentation in ITS deployment in Europe", + "topic": "MG-7.2a-2014" +},{ + "projectID": 847053, + "title": "Decarbonisation of the EU building stock: innovative approaches and affordable solutions changing the market for buildings renovation", + "topic": "LC-SC3-EE-1-2018-2019-2020" +},{ + "projectID": 101029275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 712390, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 953381, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710569, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 684013, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 818064, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 673664, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 821466, + "title": "Design and development of smart sensors for detection of human cognitive states implementable in cockpit environment", + "topic": "JTI-CS2-2017-CfP07-LPA-03-13" +},{ + "projectID": 806295, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 673662, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 791727, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 798196, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681466, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 780890, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-11-2017" +},{ + "projectID": 836806, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684023, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 875174, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 671672, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 698081, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 826712, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 720661, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 716721, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 808677, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 641384, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 945929, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684809, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 643353, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 765774, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 841814, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101030505, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 868378, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 878337, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837172, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 747228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 726353, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 867276, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816160, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 634107, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 734790, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 744126, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 861111, + "title": "Innovative applications of drones for ensuring safety in transport", + "topic": "MG-2-8-2019" +},{ + "projectID": 960426, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762978, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 775445, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 867827, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029015, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 820845, + "title": "Innovative & Flexible pilot plant Means for highly integrated AFP infusion wing box aiming at flying demonstrator manufacturing", + "topic": "JTI-CS2-2017-CfP07-AIR-02-53" +},{ + "projectID": 953760, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762346, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 774309, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 798532, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 694343, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 744663, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 745478, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 893079, + "title": "Upgrading smartness of existing buildings through innovations for legacy equipment", + "topic": "LC-SC3-EE-4-2019-2020" +},{ + "projectID": 813467, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 836206, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687329, + "title": "Releasing the potential of EGNSS applications through international cooperation", + "topic": "GALILEO-3-2015" +},{ + "projectID": 662868, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 795244, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656937, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101023948, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 674684, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 873904, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 684499, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 751921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 735095, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 685317, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 823887, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 663113, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 812960, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 882777, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783717, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 726029, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 645119, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 772766, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 738221, + "title": "Development and delivery of a flexible assembly system based on reverse engineering, tolerance analysis and Determinant Assembly Approach of wing box", + "topic": "JTI-CS2-2016-CFP03-REG-01-04" +},{ + "projectID": 672196, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 813192, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 841640, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 779611, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 952672, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 876168, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 829157, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 821969, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 651829, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 709595, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 867120, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877778, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 793639, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 658162, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 696029, + "title": "New ICT-based solutions for energy efficiency", + "topic": "EE-11-2015" +},{ + "projectID": 888156, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101014977, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 751159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 662704, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 760232, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101030595, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 642563, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 780498, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 892683, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 875299, + "title": "Scaling up the univocal Identification of Medicinal Products", + "topic": "SC1-DTH-09-2019" +},{ + "projectID": 870239, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 682955, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 876459, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 702257, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 831716, + "title": "Model based development of an innovative ECS air distribution system for ground testing with a Cabin Demonstrator", + "topic": "JTI-CS2-2018-CfP08-AIR-02-67" +},{ + "projectID": 654020, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 718124, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 646470, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 761493, + "title": "5G PPP Convergent Technologies", + "topic": "ICT-08-2017" +},{ + "projectID": 699294, + "title": "Environment and Meteorology in ATM", + "topic": "Sesar-04-2015" +},{ + "projectID": 873511, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101007599, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 687860, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 871754, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 713627, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 683209, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 889729, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 728860, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 730165, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2016" +},{ + "projectID": 750971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 788980, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 808537, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 825339, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 734996, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 660545, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 775013, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 685368, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 825307, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 731846, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 688135, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 661933, + "title": "ECSEL Key Applications and Essential Technologies (RIA)", + "topic": "ECSEL-01-2014" +},{ + "projectID": 783112, + "title": "Increased access to airports for low visibility mixed fleet operations", + "topic": "SESAR-VLD1-06-2016" +},{ + "projectID": 723677, + "title": "Models and tools for heating and cooling mapping and planning", + "topic": "EE-05-2016" +},{ + "projectID": 636249, + "title": "Transforming the use of conventionally fuelled vehicles in urban areas", + "topic": "MG-5.1-2014" +},{ + "projectID": 660375, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 867163, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101029345, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 648709, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 858999, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 714754, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 640448, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 774228, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 898458, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 810316, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 695305, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 671555, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 637616, + "title": "Independent access to space", + "topic": "COMPET-02-2014" +},{ + "projectID": 876809, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705249, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 681431, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 772989, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 641515, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2014" +},{ + "projectID": 648701, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 768914, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 753878, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 643963, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 752672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 736367, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 785821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 855062, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 825995, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 678904, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 673780, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 692726, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 762676, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 688269, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 642841, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 703373, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 688920, + "title": "Eco-innovative strategies", + "topic": "WASTE-6b-2015" +},{ + "projectID": 814492, + "title": "Accelerating the uptake of materials modelling software (IA)", + "topic": "DT-NMBP-09-2018" +},{ + "projectID": 836621, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822653, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 674203, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 848986, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 810370, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 681447, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 673413, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 711653, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 807961, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 780832, + "title": "Micro- and nanoelectronics technologies", + "topic": "ICT-31-2017" +},{ + "projectID": 713726, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 746837, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 712120, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 864831, + "title": "Fan inlet advanced distortion simulator", + "topic": "JTI-CS2-2018-CfP09-LPA-01-59" +},{ + "projectID": 807854, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 868235, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790594, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 729829, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 880314, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816148, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 828559, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854998, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867344, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821398, + "title": "Experimental investigation of aerodynamic and heat transfer properties for a next generation turbine frame and nozzle", + "topic": "JTI-CS2-2017-CfP07-ENG-02-06" +},{ + "projectID": 101034703, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 101007273, + "title": "ECSEL-2020-2-RIA", + "topic": "ECSEL-2020-2-RIA" +},{ + "projectID": 666788, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 817919, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 674094, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 823185, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672785, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 789658, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 815488, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 717228, + "title": "Jet Noise Reduction Using Predictive Methods", + "topic": "JTI-CS2-2015-CFP02-ENG-03-02" +},{ + "projectID": 887490, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781390, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101013296, + "title": "Innovative technologies for Carbodies and Running Gear of the future (TD1.3 + TD 1.4)", + "topic": "S2R-OC-IP1-03-2020" +},{ + "projectID": 641000, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 645425, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 669354, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 966614, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 892002, + "title": "CNS for ATM", + "topic": "SESAR-ER4-11-2019" +},{ + "projectID": 781427, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 672583, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 728541, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 889350, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680879, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 642088, + "title": "Making Earth Observation and Monitoring Data usable for ecosystem modelling and services", + "topic": "SC5-16-2014" +},{ + "projectID": 873915, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 845495, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 719382, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 685364, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 813127, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 789842, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 853733, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 850370, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644843, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 723030, + "title": "New and improved transport concepts in waterborne transport", + "topic": "MG-2.3-2016" +},{ + "projectID": 688807, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 759776, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 960747, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663483, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 778233, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 658467, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101008233, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 780139, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 750642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 777594, + "title": "Real-time yard and network management", + "topic": "S2R-OC-IP5-01-2017" +},{ + "projectID": 957078, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 645665, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 878368, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 961522, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 827362, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731155, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 856327, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811509, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836486, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 762947, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 789839, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 663424, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 775593, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 750492, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 684086, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 957670, + "title": "Consumer engagement and demand response", + "topic": "LC-SC3-EC-3-2020" +},{ + "projectID": 738922, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 876043, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816551, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 696917, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 654857, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 853719, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 781100, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 719500, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 680603, + "title": "Integrated approach to retrofitting of residential buildings", + "topic": "EeB-08-2015" +},{ + "projectID": 704910, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 662782, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 723623, + "title": "Promoting safe innovation through global consolidation and networking of nanosafety centres and strengthening the European industry through cooperation in nanosafety", + "topic": "NMBP-27-2016" +},{ + "projectID": 833466, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 743617, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 868390, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776425, + "title": "EGNSS professional applications", + "topic": "GALILEO-3-2017" +},{ + "projectID": 784345, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 772663, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 717218, + "title": "HVDC Generator", + "topic": "JTI-CS2-2015-CFP02-FRC-02-13" +},{ + "projectID": 739777, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101016738, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 683863, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015-1" +},{ + "projectID": 827075, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101003349, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 636354, + "title": "De-stressing the supply chain", + "topic": "MG-6.2-2014" +},{ + "projectID": 888382, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899368, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862102, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 672145, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 960589, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738296, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 682711, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 886703, + "title": "Theoretical and experimental evaluations of strain field modification induced by flaws in loaded composite structures", + "topic": "JTI-CS2-2019-CFP10-REG-01-18" +},{ + "projectID": 687645, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 730872, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 957521, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 744838, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 741284, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 856069, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673336, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 958600, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 888943, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 882324, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 686732, + "title": "High Voltage Network Battery", + "topic": "JTI-CS2-2014-CFP01-FRC-02-06" +},{ + "projectID": 854317, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 718074, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 710964, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 827266, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673048, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 684092, + "title": "Innovative mobile e-government applications by SMEs", + "topic": "INSO-9-2015" +},{ + "projectID": 101006856, + "title": "Towards global environmental regulation of supersonic aviation", + "topic": "LC-MG-1-15-2020" +},{ + "projectID": 829917, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 968430, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 819134, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 702971, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 688642, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 736397, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 845373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754696, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 681405, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 811764, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811644, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101002277, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 850339, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 662638, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 808669, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 875941, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785333, + "title": "Lateral rotor noise prediction dedicated to low noise footprint optimisation of a compound helicopter", + "topic": "JTI-CS2-2017-CFP06-FRC-02-20" +},{ + "projectID": 782515, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645011, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 673348, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 637045, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 864905, + "title": "Calibrating Ultrasonic Sensors for atmospheric corrosion.", + "topic": "JTI-CS2-2018-CFP09-AIR-03-06" +},{ + "projectID": 781851, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 871647, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836777, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 660905, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747921, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742542, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 649491, + "title": "Youth mobility: opportunities, impacts, policies", + "topic": "YOUNG-2-2014" +},{ + "projectID": 717153, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 847097, + "title": "Business case for industrial waste heat/cold recovery", + "topic": "LC-SC3-EE-6-2018-2019-2020" +},{ + "projectID": 686070, + "title": "New bioinformatics approaches in service of biotechnology", + "topic": "BIOTEC-2-2015" +},{ + "projectID": 855096, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774721, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 750611, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 946647, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 849543, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812766, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 705930, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 801091, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 670446, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 656676, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 733711, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 855134, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899907, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 677854, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 729366, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 650854, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 774211, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 878371, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 663185, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 719383, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 644748, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 889409, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 823284, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 968187, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745493, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 828439, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 724613, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 696556, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 782426, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 672605, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 761579, + "title": "Networking research beyond 5G", + "topic": "ICT-09-2017" +},{ + "projectID": 880758, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697098, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 694020, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 715945, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 663597, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 709312, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 952697, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 737621, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 735445, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 682588, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 754735, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 780572, + "title": "Customised and low energy computing (including Low power processor technologies)", + "topic": "ICT-05-2017" +},{ + "projectID": 651185, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 771844, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 728134, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 796289, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 729775, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 684082, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 945218, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 886559, + "title": "Innovative DC/DC converter for HVDC power sources hybridization", + "topic": "JTI-CS2-2019-CfP10-SYS-02-59" +},{ + "projectID": 654987, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768701, + "title": "New product functionalities through advanced surface manufacturing processes for mass production", + "topic": "FOF-06-2017" +},{ + "projectID": 727227, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 729244, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 815501, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 672008, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 699204, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 823292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699338, + "title": "ATM Performance", + "topic": "Sesar-11-2015" +},{ + "projectID": 746614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 741617, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 645560, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 825972, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 662421, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 811988, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 845675, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 762611, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 833251, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 836089, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 678215, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 737638, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 659422, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768386, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 854804, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 811668, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877543, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644460, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 642743, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 717860, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 686987, + "title": "FET Exchange Coordination and Support Activities 2015", + "topic": "FETOPEN-CSA-FETEXCHANGE-2015" +},{ + "projectID": 746215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 765148, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 756865, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 816804, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713485, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 655662, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658248, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891118, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 827883, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745143, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101010441, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 645197, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 847999, + "title": "Demonstration pilots for implementation of personalised medicine in healthcare", + "topic": "SC1-BHC-25-2019" +},{ + "projectID": 876800, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673990, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 646184, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 893101, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 889906, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 785400, + "title": "Hybrid bearings technologies", + "topic": "JTI-CS2-2017-CFP06-FRC-02-24" +},{ + "projectID": 666736, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 855689, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 868350, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687916, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 717124, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 700071, + "title": "Information driven Cyber Security Management", + "topic": "DS-04-2015" +},{ + "projectID": 826843, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 740263, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 885173, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 696480, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 677697, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 856047, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 895439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 734355, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 821140, + "title": "Development of Digital Integrated Multifunction Probe for Air Data Sensing [SAT]", + "topic": "JTI-CS2-2017-CfP07-SYS-03-14" +},{ + "projectID": 821079, + "title": "Electro-Mechanical Brake actuation for Small Aircraft [SAT]", + "topic": "JTI-CS2-2017-CfP07-SYS-03-13" +},{ + "projectID": 101017598, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 768892, + "title": "ICT Innovation for Manufacturing SMEs (I4MS)", + "topic": "FOF-12-2017" +},{ + "projectID": 659227, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 947735, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 825238, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 737552, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 825480, + "title": "Software Technologies", + "topic": "ICT-16-2018" +},{ + "projectID": 886268, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 861876, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2019-2020" +},{ + "projectID": 854036, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739551, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 674724, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 650381, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 795633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034788, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 763307, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 821277, + "title": "Development of a full size automated plant system for fuselage longitudinal and circumferential joints", + "topic": "JTI-CS2-2017-CfP07-LPA-02-22" +},{ + "projectID": 842184, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 691436, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 719836, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 697786, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 653449, + "title": "Privacy", + "topic": "DS-01-2014" +},{ + "projectID": 673655, + "title": "SME Instrument", + "topic": "Space-SME-2014-1" +},{ + "projectID": 638425, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 673188, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 101020093, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 775838, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 684232, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 718123, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 656572, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 651131, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 712363, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 808490, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 739813, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 663104, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 798063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696973, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015" +},{ + "projectID": 888524, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 712358, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 851835, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 635632, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 101021377, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 703381, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 886202, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 728793, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 809385, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 959379, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 856257, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 816582, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743997, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 837667, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875048, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 643973, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 697633, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 757860, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 893456, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 708007, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 640597, + "title": "Coordinated research and innovation actions targeting the highest levels of safety for European aviation", + "topic": "MG-1.4-2014" +},{ + "projectID": 836197, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836256, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 741904, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 748969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 707080, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 889991, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 889381, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815019, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 710389, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 763308, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 646580, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 856432, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 726825, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 677663, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101020416, + "title": "Intelligent security and privacy management", + "topic": "SU-DS02-2020" +},{ + "projectID": 830101, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875692, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 893146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 688207, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2015" +},{ + "projectID": 101016521, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 723088, + "title": "MEXICO: Collaboration on ICT", + "topic": "ICT-38-2016" +},{ + "projectID": 739408, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 886094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885806, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 636692, + "title": "Innovative Product-Service design using manufacturing intelligence", + "topic": "FoF-05-2014" +},{ + "projectID": 778392, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 657441, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714797, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 887672, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 877713, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101014517, + "title": "Study on alternative bearers and on communication protocols", + "topic": "S2R-OC-IP2-02-2020" +},{ + "projectID": 684761, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 827545, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 788195, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 662451, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 735857, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 699980, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 821878, + "title": "Satellite communication technologies", + "topic": "SPACE-15-TEC-2018" +},{ + "projectID": 955778, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 679305, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 808099, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 834940, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 661067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 679852, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 801347, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 652593, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 775463, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 840675, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 826938, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 954783, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 776294, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2017" +},{ + "projectID": 707373, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 792969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 952966, + "title": "Materials for off shore energy (IA)", + "topic": "LC-NMBP-31-2020" +},{ + "projectID": 779391, + "title": "Cybersecurity PPP: Cryptography", + "topic": "DS-06-2017" +},{ + "projectID": 888218, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 642332, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 864154, + "title": "Cost analysis software platform for evaluating innovative manufacturing technology for SMART fuselage", + "topic": "JTI-CS2-2018-CFP09-AIR-02-76" +},{ + "projectID": 672676, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 644187, + "title": "Advanced digital gaming/gamification technologies", + "topic": "ICT-21-2014" +},{ + "projectID": 773312, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 838414, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 874190, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687366, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 864635, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 711164, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 855756, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687641, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 651993, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 893150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 820773, + "title": "Building information modelling adapted to efficient renovation (RIA)", + "topic": "LC-EEB-02-2018" +},{ + "projectID": 827376, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738295, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 835593, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 892262, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 854725, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 778120, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 854843, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 647544, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 717805, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 945253, + "title": "Safety assessments for Long Term Operation (LTO) upgrades of Generation II and III reactors", + "topic": "NFRP-2019-2020-02" +},{ + "projectID": 677931, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 791695, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 692644, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 719201, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 684755, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015-1" +},{ + "projectID": 673922, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 755621, + "title": "High Fidelity Integrated Non-Linear MBS Modelling of Morphing Wing", + "topic": "JTI-CS2-2016-CFP04-REG-01-06" +},{ + "projectID": 685105, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 876239, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737543, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 706415, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 762089, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 795218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 739013, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 876629, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 739367, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 753370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655950, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 768875, + "title": "Bringing to market more energy efficient and integrated data centres", + "topic": "EE-20-2017" +},{ + "projectID": 663410, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 678341, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 887222, + "title": "Electro-Mechanical Landing Gear system integration for Small Aircraft [SAT]", + "topic": "JTI-CS2-2019-CfP10-SYS-03-23" +},{ + "projectID": 719003, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 644960, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 101024372, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 717643, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015-1" +},{ + "projectID": 826310, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 779218, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 666668, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 776253, + "title": "EGNSS mass market applications", + "topic": "GALILEO-2-2017" +},{ + "projectID": 866656, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 823788, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 672286, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 768278, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 702635, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 798402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 951989, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 738697, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 673953, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014" +},{ + "projectID": 840701, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101019855, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839847, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 817629, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 759969, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 709267, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 738002, + "title": "Design Guide Lines and Simulation Methods for Additive Manufactured Titanium Components", + "topic": "JTI-CS2-2016-CFP03-AIR-01-16" +},{ + "projectID": 816857, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887173, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 725232, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 812411, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 777442, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 874929, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 857844, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 882486, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735579, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 710130, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 687367, + "title": "Small and Medium Enterprise (SME) based EGNSS applications", + "topic": "GALILEO-2-2015" +},{ + "projectID": 871352, + "title": "Robotics in Application Areas", + "topic": "ICT-09-2019-2020" +},{ + "projectID": 794957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101008020, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 753750, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727646, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 698184, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015-1" +},{ + "projectID": 671648, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 817089, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655016, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 761947, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 790271, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 646568, + "title": "Distribution grid and retail market", + "topic": "LCE-07-2014" +},{ + "projectID": 683820, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 680478, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 855248, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 673998, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 640110, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 761813, + "title": "Media and content convergence", + "topic": "ICT-19-2017" +},{ + "projectID": 701513, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 876617, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 719473, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 841116, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 816442, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 842066, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 745770, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 682462, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 773298, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 744914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 889292, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 812844, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 779431, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 773715, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 836660, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101016427, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 711193, + "title": "SME Instrument", + "topic": "Space-SME-2015-2" +},{ + "projectID": 700300, + "title": "Proof-of-concept of HT electrolysers at a scale > 70 kW", + "topic": "FCH-02.4-2015" +},{ + "projectID": 687039, + "title": "Alternative Architecture Engine research", + "topic": "JTI-CS2-2014-CFP01-ENG-04-03" +},{ + "projectID": 727682, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 739648, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 806245, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 720235, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 867493, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 887621, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775707, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 884142, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 881777, + "title": "Support to development of demonstrator platform for Traffic Management", + "topic": "S2R-OC-IP2-02-2019" +},{ + "projectID": 736526, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 767287, + "title": "Novel design and predictive maintenance technologies for increased operating life of production systems", + "topic": "FOF-09-2017" +},{ + "projectID": 856071, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 698530, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 857156, + "title": "Quantum Key Distribution testbed", + "topic": "SU-ICT-04-2019" +},{ + "projectID": 673627, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 641252, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 776307, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 774478, + "title": "Next generation innovative technologies enabling smart grids, storage and energy system integration with increasing share of renewables: distribution network", + "topic": "LCE-01-2016-2017" +},{ + "projectID": 642676, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 789877, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 755332, + "title": "Electrical simulation model identification method and tool", + "topic": "JTI-CS2-2016-CFP04-SYS-02-24" +},{ + "projectID": 756712, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 644874, + "title": "Support the growth of ICT innovative Creative Industries SMEs", + "topic": "ICT-18-2014" +},{ + "projectID": 817378, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 723314, + "title": "Innovative concepts, systems and services towards 'mobility as a service'", + "topic": "MG-6.1-2016" +},{ + "projectID": 854609, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 897614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 835681, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 867050, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 735874, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 827366, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681808, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 823582, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 899839, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 830965, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 710770, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015-1" +},{ + "projectID": 101016714, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 696945, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015" +},{ + "projectID": 894237, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 787447, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 762987, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 683541, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 732996, + "title": "Enhanced Air and Ground Safety Nets", + "topic": "SESAR.IR-VLD.Wave1-15-2015" +},{ + "projectID": 684563, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 734948, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 714663, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 684596, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 664200, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 713251, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 693229, + "title": "Innovation ecosystems of digital cultural assets", + "topic": "REFLECTIVE-6-2015" +},{ + "projectID": 956000, + "title": "Industrial software codes for extreme scale computing environments and applications", + "topic": "EuroHPC-03-2019" +},{ + "projectID": 844423, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 828048, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 863037, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 768652, + "title": "Integrated approach to process optimisation for raw material resources efficiency, excluding recovery technologies of waste streams", + "topic": "SPIRE-07-2017" +},{ + "projectID": 824022, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 688172, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 740580, + "title": "Forensics techniques on: a) trace qualification, and b) broadened use of DNA", + "topic": "SEC-08-FCT-2016" +},{ + "projectID": 888950, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 807638, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 780966, + "title": "Big data PPP: Support, industrial skills, benchmarking and evaluation", + "topic": "ICT-17-2016-2017" +},{ + "projectID": 727595, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 691495, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 878237, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101004291, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "SPACE-10-TEC-2018-2020" +},{ + "projectID": 729692, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 735630, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 855987, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 688244, + "title": "Technologies for creative industries, social media and convergence", + "topic": "ICT-19-2015" +},{ + "projectID": 644048, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 728532, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 834166, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101015418, + "title": "Advanced tools and equipment: collaborative robots & wearable mobile machines (TD3.8)", + "topic": "S2R-OC-IP3-03-2020" +},{ + "projectID": 710137, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 780960, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 827840, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750270, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 637066, + "title": "Process optimisation of manufacturing assets", + "topic": "FoF-01-2014" +},{ + "projectID": 674422, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 736532, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645114, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 744918, + "title": "Supporting innovative SMEs in the healthcare biotechnology sector", + "topic": "SMEInst-05-2016-2017" +},{ + "projectID": 731724, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 776242, + "title": "EO Big Data Shift", + "topic": "EO-2-2017" +},{ + "projectID": 852992, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 693928, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 782683, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 719985, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 748945, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 970904, + "title": "Peer learning of innovation agencies", + "topic": "INNOSUP-05-2018-2020" +},{ + "projectID": 832558, + "title": "Support for a Member States’ concerted market surveillance action on EU product energy efficiency legislation", + "topic": "IBA-SC3-energy-2018" +},{ + "projectID": 717850, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 718705, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 784273, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 956213, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 752080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 671668, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 735171, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 733538, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 762793, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 953971, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 865430, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 866026, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 761931, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 649982, + "title": "Improving the financeability and attractiveness of sustainable energy investments", + "topic": "EE-19-2014" +},{ + "projectID": 662635, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 958231, + "title": "Materials life cycle sustainability analysis", + "topic": "CE-NMBP-42-2020" +},{ + "projectID": 782872, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 737610, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 666635, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 731970, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 808425, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 828125, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 760827, + "title": "Systems of materials characterisation for model, product and process optimisation", + "topic": "NMBP-07-2017" +},{ + "projectID": 816565, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 768910, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 643481, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 808502, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 714371, + "title": "More electric, advanced hydromechanics propeller control components", + "topic": "JTI-CS2-2015-CFP02-ENG-01-03" +},{ + "projectID": 781400, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 719468, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 877802, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731246, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 850006, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 864274, + "title": "Solutions for increased regional cross-border cooperation in the transmission grid", + "topic": "LC-SC3-ES-2-2019" +},{ + "projectID": 893732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 869882, + "title": "Adaptation to variable feedstock through retrofitting (IA 50%)", + "topic": "CE-SPIRE-05-2019" +},{ + "projectID": 780245, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 661916, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 776369, + "title": "EGNSS awareness raising and capacity building", + "topic": "GALILEO-4-2017" +},{ + "projectID": 719808, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 796405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 820647, + "title": "Optimization of TiAl CALPHAD databases of respective material systems", + "topic": "JTI-CS2-2017-CfP07-ENG-02-08" +},{ + "projectID": 879228, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 752898, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 786913, + "title": "Toolkits integrating tools and techniques for forensic laboratories", + "topic": "SEC-09-FCT-2017" +},{ + "projectID": 642773, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 683959, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 691070, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 888406, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 642928, + "title": "Optical communications", + "topic": "EUJ-2-2014" +},{ + "projectID": 820867, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 847955, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745537, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 866646, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705938, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 868895, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 701002, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 666432, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014" +},{ + "projectID": 807793, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 854624, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 844646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 872897, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 874079, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 697515, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015" +},{ + "projectID": 839217, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665906, + "title": "Fostering RRI uptake in current research and innovations systems", + "topic": "GARRI-1-2014" +},{ + "projectID": 854981, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 782642, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 801189, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 762055, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 729376, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 778897, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 681891, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 896384, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 805945, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 885802, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 713410, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 708139, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 723991, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 705112, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 744916, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 836279, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 955701, + "title": "Extreme scale computing and data driven technologies", + "topic": "EuroHPC-01-2019" +},{ + "projectID": 881825, + "title": "Complementary Travel Expert Services", + "topic": "S2R-OC-IP4-01-2019" +},{ + "projectID": 681565, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 701194, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 815956, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644690, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 738114, + "title": "Development of innovative automated fiber placement machine for composite fuselage manufacturing with high performance hybrid materials.", + "topic": "JTI-CS2-2016-CFP03-AIR-02-26" +},{ + "projectID": 737472, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 721537, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 739772, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 762383, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 819649, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 791006, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 671873, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2014-1" +},{ + "projectID": 101000162, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 714729, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 674440, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 720176, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 732174, + "title": "Future Internet Experimentation - Building a European experimental Infrastructure", + "topic": "ICT-13-2016" +},{ + "projectID": 700510, + "title": "Information management topic 1: Civilian humanitarian mission personnel tracking", + "topic": "BES-10-2015" +},{ + "projectID": 101025811, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 876355, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 806018, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 633888, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 809330, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 887881, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685569, + "title": "Support to the aerodynamic analysis and design of propellers of a compound helicopter", + "topic": "JTI-CS2-2014-CFP01-FRC-02-03" +},{ + "projectID": 707466, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 876130, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 738377, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 879986, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 957509, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101004255, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 823852, + "title": "Connecting ESFRI infrastructures through Cluster projects", + "topic": "INFRAEOSC-04-2018" +},{ + "projectID": 766820, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 773124, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 899260, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 824221, + "title": "Supporting experimentation in innovation agencies", + "topic": "INNOSUP-06-2018" +},{ + "projectID": 741278, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 732717, + "title": "Support technology transfer to the creative industries", + "topic": "ICT-21-2016" +},{ + "projectID": 886609, + "title": "Disassembly and recycling of innovative structures made of different Al-Li alloys", + "topic": "JTI-CS2-2019-CFP10-AIR-03-08" +},{ + "projectID": 891627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 869991, + "title": "Refurbishment and re-manufacturing of large industrial equipment (IA)", + "topic": "DT-FOF-06-2019" +},{ + "projectID": 768772, + "title": "Valorisation of waste heat in industrial systems (SPIRE PPP)", + "topic": "EE-17-2016-2017" +},{ + "projectID": 853943, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 779793, + "title": "International partnership building in low and middle income countries", + "topic": "ICT-39-2016-2017" +},{ + "projectID": 656298, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 802629, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 743086, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 821953, + "title": "Access to space", + "topic": "SPACE-16-TEC-2018" +},{ + "projectID": 703886, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 635962, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 101031646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 660646, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 663947, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 680570, + "title": "Energy and resource management systems for improved efficiency in the process industries", + "topic": "SPIRE-06-2015" +},{ + "projectID": 817340, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 672890, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 767138, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 645664, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 777862, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 666312, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 827331, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 719806, + "title": "Critical infrastructure protection topic 7: SME instrument topic: Protection of Urban soft targets and critical infrastructures", + "topic": "DRS-17-2015" +},{ + "projectID": 743469, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 830265, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 836459, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 677352, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 781369, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 681818, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 884133, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 699221, + "title": "Environment and Meteorology in ATM", + "topic": "Sesar-04-2015" +},{ + "projectID": 660231, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 777902, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 777826, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 836106, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 873169, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 733157, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 877973, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 743623, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966733, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 826497, + "title": "Raising awareness and developing training schemes on cybersecurity in hospitals", + "topic": "SU-TDS-03-2018" +},{ + "projectID": 953219, + "title": "Towards harmonised characterisation protocols in NMBP (RIA)", + "topic": "NMBP-35-2020" +},{ + "projectID": 652574, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 748826, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652240, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 724464, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 869984, + "title": "Open Innovation for collaborative production engineering (IA)", + "topic": "DT-FOF-05-2019" +},{ + "projectID": 692804, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 816560, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 783594, + "title": "Accelerating market introduction of ICT solutions for Health, Well-Being and Ageing Well", + "topic": "SMEInst-06-2016-2017" +},{ + "projectID": 661482, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 865044, + "title": "Aircraft wing architecture optimal assembly", + "topic": "JTI-CS2-2018-CfP09-SYS-03-21" +},{ + "projectID": 675806, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 707482, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 949587, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 780487, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 790017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 743173, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 741273, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101020415, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 799553, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 672746, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 743907, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 946025, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 712175, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 859507, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687556, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 953418, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 644753, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 876796, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 781170, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101000165, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 755037, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 783228, + "title": "Solutions for General Aviation and Rotorcraft", + "topic": "SESAR-VLD1-09-2016" +},{ + "projectID": 880605, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 775751, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 727261, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 730753, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 795396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 647295, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 672045, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014-1" +},{ + "projectID": 672309, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014" +},{ + "projectID": 671596, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 825783, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 745114, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 785122, + "title": "Effective implementation of EU product efficiency legislation", + "topic": "EE-16-2016-2017" +},{ + "projectID": 698852, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 101034880, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 832140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 892264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 843439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792536, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871342, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 720729, + "title": "Sustainable cellulose-based materials", + "topic": "BBI.VC2.R6-2015" +},{ + "projectID": 717336, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2015" +},{ + "projectID": 638240, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 739793, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 945807, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 815705, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 794370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 730648, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 685052, + "title": "Clinical research for the validation of biomarkers and/or diagnostic medical devices", + "topic": "PHC-12-2015" +},{ + "projectID": 783773, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 650549, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 711725, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 749910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 801440, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 898560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701366, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 657237, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 716712, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 881467, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 880496, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 790499, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 868266, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 685074, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015" +},{ + "projectID": 733718, + "title": "Dedicated support to biotechnology SMEs closing the gap from lab to market", + "topic": "SMEInst-03-2016-2017" +},{ + "projectID": 101007130, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 716344, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 689785, + "title": "Demonstration/pilot activities", + "topic": "WATER-1b-2015" +},{ + "projectID": 702911, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 681872, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 862919, + "title": "Improving animal welfare", + "topic": "SFS-08-2018-2019" +},{ + "projectID": 674655, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014-1" +},{ + "projectID": 718835, + "title": "SME Instrument", + "topic": "Space-SME-2015-1" +},{ + "projectID": 819952, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 691102, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 875429, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 748314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 898804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819507, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 892632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 894264, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 706642, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 744068, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 667507, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 728564, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 659920, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 650880, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 886231, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 666482, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2014" +},{ + "projectID": 642445, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 771294, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 685006, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 681402, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101026898, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 679814, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 845799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 702641, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 799083, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 673023, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014" +},{ + "projectID": 661784, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 949880, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 778263, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 844909, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 655172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887927, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 859165, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 952647, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 807204, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 821169, + "title": "Aircraft mission modelling: ground and flight operations", + "topic": "JTI-CS2-2017-CfP07-SYS-03-16" +},{ + "projectID": 717600, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 778453, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 101026679, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 700036, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 860125, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 681673, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 947336, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101030799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 791486, + "title": "Engaging SMEs in security research and development", + "topic": "SMEInst-13-2016-2017" +},{ + "projectID": 682580, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 956129, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 767667, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 666774, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2014" +},{ + "projectID": 897873, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 804477, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 787904, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 778069, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 727892, + "title": "Large-scale algae biomass integrated biorefineries", + "topic": "BG-01-2016" +},{ + "projectID": 683515, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015" +},{ + "projectID": 776011, + "title": "Space Weather", + "topic": "COMPET-5-2017" +},{ + "projectID": 739785, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 798198, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 796194, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886240, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 864038, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 736727, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 644925, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 742985, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 656596, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 673651, + "title": "SME boosting biotechnology-based industrial processes driving competitiveness and sustainability", + "topic": "BIOTEC-5a-2014-1" +},{ + "projectID": 729773, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 749380, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852725, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 835322, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 747029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 656822, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 711340, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 673202, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 877611, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 656945, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101010266, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 877422, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 658400, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101027721, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751039, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 681746, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 661427, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 886866, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 805046, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 947897, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 660521, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 750570, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724715, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 767333, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101026004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 826061, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 863034, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 101003394, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 867307, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 875777, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 745695, + "title": "Exploiting algae and other aquatic biomass for production of molecules for pharma, nutraceuticals, food additives and cosmetic applications", + "topic": "BBI-2016-R09" +},{ + "projectID": 728526, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 792257, + "title": "Integrated multi-valorisation of algae into advanced materials and high added-value additives", + "topic": "BBI.2017.D2" +},{ + "projectID": 728996, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 663942, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 745754, + "title": "Exploiting algae and other aquatic biomass for production of molecules for pharma, nutraceuticals, food additives and cosmetic applications", + "topic": "BBI-2016-R09" +},{ + "projectID": 730423, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 837998, + "title": "Find solutions to dilution, pollution and content diversity challenges to turn mixed urban bio-waste (1) into sustainable feedstock for the bio-based industry", + "topic": "BBI.2018.SO1.D2" +},{ + "projectID": 817788, + "title": "Integrated system innovation in valorising urban biowaste", + "topic": "CE-SFS-25-2018" +},{ + "projectID": 745746, + "title": "Valorisation of the organic content of Municipal Solid Waste and contributing to the renewable circular economy", + "topic": "BBI-2016-D06" +},{ + "projectID": 101036768, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +},{ + "projectID": 837726, + "title": "Resolve logistical, infrastructural and technological challenges to valorise residual and side streams from aquaculture, fisheries and the aquatic biomass processing industries", + "topic": "BBI.2018.SO1.R1" +},{ + "projectID": 817591, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 101000441, + "title": "Bio-based industries leading the way in turning carbon dioxide emissions into chemicals", + "topic": "LC-FNR-13-2020" +},{ + "projectID": 720715, + "title": "Innovative efficient biorefinery technologies", + "topic": "BBI.R10-2015" +},{ + "projectID": 101036081, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 645658, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 826653, + "title": "H2020-ECSEL-2018-2-RIA", + "topic": "ECSEL-2018-2-RIA" +},{ + "projectID": 859891, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 839402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754397, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 821040, + "title": "\"Seals for FTB#2 Wing with Additive Manufacturing Technologies\"", + "topic": "JTI-CS2-2017-CfP07-AIR-02-54" +},{ + "projectID": 722337, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101031925, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703287, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 898840, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 687312, + "title": "Scientific exploitation of astrophysics, comets, and planetary data", + "topic": "COMPET-05-2015" +},{ + "projectID": 679942, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 798397, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 734331, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 773903, + "title": "Management of soil water resources in the EU and China and its impact on agro-ecosystem functions", + "topic": "SFS-47-2017" +},{ + "projectID": 664440, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 724529, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 640120, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 704410, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 704141, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 686282, + "title": "New bioinformatics approaches in service of biotechnology", + "topic": "BIOTEC-2-2015" +},{ + "projectID": 818173, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 680894, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 689518, + "title": "More effective ecosystem restoration in the EU", + "topic": "SC5-07-2015" +},{ + "projectID": 843521, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 863170, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101018807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 745785, + "title": "Valorisation of the organic content of Municipal Solid Waste and contributing to the renewable circular economy", + "topic": "BBI-2016-D06" +},{ + "projectID": 749645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 871037, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 639758, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 788582, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 760824, + "title": "Improved material durability in buildings and infrastructures, including offshore", + "topic": "NMBP-06-2017" +},{ + "projectID": 675530, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 965018, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 730994, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 101025471, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101000256, + "title": "Integrated health approaches and alternatives to pesticide use", + "topic": "SFS-04-2019-2020" +},{ + "projectID": 788039, + "title": "The ethical dimensions of IT technologies: a European perspective focusing on security and human rights aspects", + "topic": "SwafS-22-2017" +},{ + "projectID": 725743, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 648518, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 690013, + "title": "Innovative procurement pilot action in the field of scientific instrumentation", + "topic": "INFRASUPP-2-2015" +},{ + "projectID": 642609, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 838317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727473, + "title": "ERA-NET Cofund: Public-Public Partnerships in the bioeconomy", + "topic": "SFS-19-2016-2017" +},{ + "projectID": 101022507, + "title": "International cooperation with Japan for Research and Innovation on advanced biofuels and alternative renewable fuels", + "topic": "LC-SC3-RES-25-2020" +},{ + "projectID": 828972, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 720942, + "title": "Nanoformulation of biologicals", + "topic": "NMBP-10-2016" +},{ + "projectID": 892863, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637116, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 731868, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 872394, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101006656, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 745791, + "title": "Advanced biomaterials for smart food packaging", + "topic": "BBI-2016-R05" +},{ + "projectID": 899561, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 644435, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 862862, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 646172, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 101030093, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101017116, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 727393, + "title": "Understanding host-pathogen-environment interactions", + "topic": "SFS-14-2016" +},{ + "projectID": 654906, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824671, + "title": "Advancing the Monitoring of the Evolution and Benefits of Responsible Research and Innovation", + "topic": "SwafS-21-2018" +},{ + "projectID": 860070, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 846097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 689648, + "title": "Raw materials intelligence capacity", + "topic": "SC5-13e-2015" +},{ + "projectID": 641277, + "title": "Quantum simulation", + "topic": "FETPROACT-3-2014" +},{ + "projectID": 101024839, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 817806, + "title": "Sustainable harvesting of marine biological resources", + "topic": "LC-BG-03-2018" +},{ + "projectID": 720297, + "title": "Innovative efficient biorefinery technologies", + "topic": "BBI.R10-2015" +},{ + "projectID": 766581, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 695515, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 832980, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 838994, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860887, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 687534, + "title": "EGNSS applications", + "topic": "GALILEO-1-2015" +},{ + "projectID": 633476, + "title": "Optimizing space availability for European Aquaculture", + "topic": "SFS-11a-2014" +},{ + "projectID": 793102, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 788250, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101007165, + "title": "HT proton conducting ceramic materials for highly efficient and flexible operation", + "topic": "FCH-03-1-2020" +},{ + "projectID": 951631, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 757440, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 812699, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101033411, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 664714, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 688110, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 101035979, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 949745, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 691109, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101000224, + "title": "Healthy soils for healthy food production", + "topic": "SFS-40-2020" +},{ + "projectID": 753556, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 895047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101033648, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002203, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 793726, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 744213, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 101026162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 766864, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 766327, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 659135, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824072, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 747637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 765147, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 633304, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 813383, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 799693, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 843337, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101026158, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 952119, + "title": "I4MS (phase 4) - uptake of digital game changers", + "topic": "DT-ICT-03-2020" +},{ + "projectID": 895249, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 952027, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 642154, + "title": "Moving towards a circular economy through industrial symbiosis", + "topic": "WASTE-1-2014" +},{ + "projectID": 776480, + "title": "Novel in-situ observation systems", + "topic": "SC5-18-2017" +},{ + "projectID": 864195, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101028901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 734374, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 890545, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897719, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 841576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 898145, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 721874, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 707587, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 833617, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 810141, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 794126, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 740481, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101030275, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 665634, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 696371, + "title": "Authentication of food products", + "topic": "SFS-14b-2015" +},{ + "projectID": 837874, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 716298, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 715087, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 819623, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 641887, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 723575, + "title": "Plant-wide monitoring and control of data-intensive processes", + "topic": "SPIRE-02-2016" +},{ + "projectID": 687378, + "title": "Scientific exploitation of astrophysics, comets, and planetary data", + "topic": "COMPET-05-2015" +},{ + "projectID": 720726, + "title": "Increasing productivity of industrial multi-purpose agricultural crops", + "topic": "BBI.VC3.R8-2015" +},{ + "projectID": 832121, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 635595, + "title": "Widening industrial application of enzymatic processes", + "topic": "BIOTEC-3-2014" +},{ + "projectID": 952921, + "title": "Towards harmonised characterisation protocols in NMBP (RIA)", + "topic": "NMBP-35-2020" +},{ + "projectID": 644956, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 844159, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 665337, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 871501, + "title": "Unconventional Nanoelectronics", + "topic": "ICT-06-2019" +},{ + "projectID": 800396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 720325, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 658982, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 829067, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101007627, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 656006, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101003651, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 734522, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 734833, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 747086, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 750996, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 773902, + "title": "Innovations in plant protection", + "topic": "SFS-17-2017" +},{ + "projectID": 785994, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 708351, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101001561, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 835599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 777516, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 642742, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 741930, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 643558, + "title": "Vaccine development for poverty-related and neglected infectious diseases: tuberculosis", + "topic": "PHC-08-2014" +},{ + "projectID": 748429, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 743439, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101007629, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 862613, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 101030754, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 811284, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101025130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 647900, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 757829, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 869625, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2018-2019-2020" +},{ + "projectID": 748971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 844977, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003544, + "title": "Advancing knowledge for the clinical and public health response to the 2019-nCoV epidemic", + "topic": "SC1-PHE-CORONAVIRUS-2020" +},{ + "projectID": 754609, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 647359, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 661361, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 887407, + "title": "Convert plant oils and fats into safe high-added-value products for various applications including food and personal care", + "topic": "BBI-2019-SO2-R5" +},{ + "projectID": 885931, + "title": "In support of documentary standards (CSA)", + "topic": "NMBP-34-2019" +},{ + "projectID": 655653, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 699260, + "title": "Data Science in ATM", + "topic": "Sesar-02-2015" +},{ + "projectID": 731005, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 747775, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 896290, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 634935, + "title": "Health promotion and disease prevention: translating 'omics' into stratified approaches", + "topic": "PHC-05-2014" +},{ + "projectID": 766251, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 642224, + "title": "Dissemination and exploitation, ICT, knowledge, gaps, research needs, etc", + "topic": "WATER-4a-2014" +},{ + "projectID": 721019, + "title": "Advanced materials enabling the integration of storage technologies in the electricity grid", + "topic": "NMBP-18-2016" +},{ + "projectID": 652856, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 869896, + "title": "Efficient integrated downstream processes (IA)", + "topic": "CE-SPIRE-04-2019" +},{ + "projectID": 890815, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 665919, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 101017111, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 739566, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 862121, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 893995, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101034583, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 792150, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101007579, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 829162, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 820770, + "title": "Efficient recycling processes for plastic containing materials (IA)", + "topic": "CE-SPIRE-10-2018" +},{ + "projectID": 951994, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 779963, + "title": "System abilities, SME & benchmarking actions, safety certification", + "topic": "ICT-27-2017" +},{ + "projectID": 891404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 861088, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 633152, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 707477, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 841824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 834329, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 692241, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 689176, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101008058, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 833106, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 722028, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 876659, + "title": "ECSEL-2019-1-IA", + "topic": "ECSEL-2019-1-IA" +},{ + "projectID": 874964, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 860006, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101030460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823922, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 964450, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101002131, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 797297, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101001290, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 754016, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 101000651, + "title": "Integrated health approaches and alternatives to pesticide use", + "topic": "SFS-04-2019-2020" +},{ + "projectID": 642870, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 635690, + "title": "Authentication of olive oil", + "topic": "SFS-14a-2014" +},{ + "projectID": 817612, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 793095, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 835732, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 765866, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 813599, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 681740, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 657769, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 691287, + "title": "Modelling and analysing the energy system, its transformation and impacts", + "topic": "LCE-21-2015" +},{ + "projectID": 101036107, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 899559, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 705163, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 739500, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 695536, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 751608, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 675132, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 797725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 814418, + "title": "Synthetic biology to expand diversity of nature's chemical production (RIA)", + "topic": "BIOTEC-03-2018" +},{ + "projectID": 871155, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 689527, + "title": "Innovation friendly minerals policy framework", + "topic": "SC5-13c-2015" +},{ + "projectID": 101006612, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 895152, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655162, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 818340, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 679068, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 785019, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 842652, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 779982, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 635408, + "title": "Tackling losses from terrestrial animal diseases", + "topic": "SFS-01b-2014" +},{ + "projectID": 948582, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 747789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 825762, + "title": "New testing and screening methods to identify endocrine disrupting chemicals", + "topic": "SC1-BHC-27-2018" +},{ + "projectID": 792063, + "title": "Novel bio-based chemical precursors to improve the performance of mass consumption products", + "topic": "BBI.2017.R5" +},{ + "projectID": 686116, + "title": "Integration of novel nano materials into existing production lines", + "topic": "NMP-02-2015" +},{ + "projectID": 895340, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817661, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 843950, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 678589, + "title": "Scientific basis and tools for preventing and mitigating farmed mollusc diseases", + "topic": "SFS-10b-2015" +},{ + "projectID": 755655, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101017709, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-07-2020" +},{ + "projectID": 722930, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 893557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 715832, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 639226, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 773872, + "title": "Innovative solutions for sustainable food packaging", + "topic": "SFS-35-2017" +},{ + "projectID": 722651, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 948986, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 688175, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 691402, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 899616, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 731626, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 779960, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 870294, + "title": "Microorganism communities for plastics bio-degradation (RIA)", + "topic": "CE-BIOTEC-05-2019" +},{ + "projectID": 727715, + "title": "EU-Africa Research and Innovation partnership on food and nutrition security and sustainable agriculture", + "topic": "SFS-41-2016" +},{ + "projectID": 824164, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 101018321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 720783, + "title": "Novel hybrid materials for heterogeneous catalysis", + "topic": "NMBP-01-2016" +},{ + "projectID": 681275, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 749506, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734317, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 675585, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 776679, + "title": "Raw materials policy support actions", + "topic": "SC5-15-2016-2017" +},{ + "projectID": 776247, + "title": "Scientific data exploitation", + "topic": "COMPET-4-2017" +},{ + "projectID": 883753, + "title": "Development of next generation biofuel and alternative renewable fuel technologies for aviation and shipping", + "topic": "LC-SC3-RES-23-2019" +},{ + "projectID": 643694, + "title": "Self management of health and disease: citizen engagement and mHealth", + "topic": "PHC-26-2014" +},{ + "projectID": 692480, + "title": "Semicondutor Process, Equipment and Materials", + "topic": "ECSEL-15-2015" +},{ + "projectID": 813547, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 829010, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 659008, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 815003, + "title": "Driver behaviour and acceptance of connected, cooperative and automated transport", + "topic": "MG-3-3-2018" +},{ + "projectID": 746876, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690819, + "title": "International cooperation in aeronautics with Canada", + "topic": "MG-1.9-2015" +},{ + "projectID": 860960, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 723611, + "title": "Novel hybrid approaches for additive and subtractive manufacturing machines", + "topic": "FOF-01-2016" +},{ + "projectID": 898633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 779486, + "title": "Game changer High Temperature Steam Electrolysers", + "topic": "FCH-02-2-2017" +},{ + "projectID": 657732, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 792544, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 873072, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 704697, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 746044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 724981, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 639034, + "title": "Transnational network of national contact points (NCP)", + "topic": "WIDESPREAD-3-2014" +},{ + "projectID": 101016608, + "title": "5G PPP – 5G innovations for verticals with third party services", + "topic": "ICT-41-2020" +},{ + "projectID": 862342, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 797236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 872081, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 713422, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 860621, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 642157, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 793627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 956457, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 777435, + "title": "Platform-driven e-infrastructure innovation", + "topic": "EINFRA-21-2017" +},{ + "projectID": 890616, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 756575, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 725061, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 802182, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 831302, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 633962, + "title": "Synthetic biology – construction of organisms for new products and processes", + "topic": "BIOTEC-1-2014" +},{ + "projectID": 880028, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 675858, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 892427, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862893, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 884197, + "title": "Development of next generation biofuel and alternative renewable fuel technologies for aviation and shipping", + "topic": "LC-SC3-RES-23-2019" +},{ + "projectID": 721456, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 685445, + "title": "Materials for severe operating conditions, including added-value functionalities", + "topic": "NMP-19-2015" +},{ + "projectID": 861950, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862874, + "title": "A vaccine against African swine fever", + "topic": "SFS-12-2019" +},{ + "projectID": 730127, + "title": "Raw materials international co-operation", + "topic": "SC5-16-2016-2017" +},{ + "projectID": 737116, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 699796, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 773782, + "title": "Coastal-rural interactions: Enhancing synergies between land and sea-based activities", + "topic": "RUR-02-2017" +},{ + "projectID": 838991, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101037031, + "title": "Demonstration of systemic solutions for the territorial deployment of the circular economy", + "topic": "LC-GD-3-2-2020" +},{ + "projectID": 658521, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 834162, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 870114, + "title": "Integration of energy smart materials in non-residential buildings (IA)", + "topic": "LC-EEB-01-2019" +},{ + "projectID": 851255, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 884418, + "title": "Low carbon industrial production using CCUS", + "topic": "LC-SC3-NZE-5-2019-2020" +},{ + "projectID": 680395, + "title": "New adaptable catalytic reactor methodologies for Process Intensification", + "topic": "SPIRE-05-2015" +},{ + "projectID": 101018312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 814650, + "title": "Synthetic biology to expand diversity of nature's chemical production (RIA)", + "topic": "BIOTEC-03-2018" +},{ + "projectID": 101027534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749255, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 952869, + "title": "Towards harmonised characterisation protocols in NMBP (RIA)", + "topic": "NMBP-35-2020" +},{ + "projectID": 653718, + "title": "Enabling decarbonisation of the fossil fuel-based power sector and energy intensive industry through CCS", + "topic": "LCE-15-2015" +},{ + "projectID": 101032910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 737180, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 848002, + "title": "Understanding causative mechanisms in co- and multimorbidities combining mental and non-mental disorders", + "topic": "SC1-BHC-01-2019" +},{ + "projectID": 101024149, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656127, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 799434, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101027389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 823783, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 796541, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 823886, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 786945, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SEC-05-DRS-2016-2017" +},{ + "projectID": 839191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101024130, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 754630, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 955343, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 952219, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 730798, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 659072, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 757886, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 957852, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 792070, + "title": "Exploiting extremophiles and extremozymes to broaden the processing conditions to convert biomass into high-value building blocks", + "topic": "BBI.2017.R3" +},{ + "projectID": 796007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 899352, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 766311, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 886476, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745722, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 801305, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 647012, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 633571, + "title": "Traditional resources for agricultural diversity and the food chain", + "topic": "SFS-07a-2014" +},{ + "projectID": 656725, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 824135, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 679050, + "title": "Converting CO2 into chemicals", + "topic": "ISIB-06-2015" +},{ + "projectID": 773330, + "title": "Promoting and supporting the eco-intensification of aquaculture production systems: inland (including fresh water), coastal zone, and offshore", + "topic": "SFS-32-2017" +},{ + "projectID": 840375, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 732032, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 671093, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 703354, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 744957, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 776293, + "title": "EGNSS Transport applications", + "topic": "GALILEO-1-2017" +},{ + "projectID": 681299, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 851929, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 655841, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101001038, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101007176, + "title": "Underground storage of renewable hydrogen in depleted gas fields and other geological stores", + "topic": "FCH-02-5-2020" +},{ + "projectID": 950013, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101036449, + "title": "Innovative, systemic zero-pollution solutions to protect health, environment and natural resources from persistent and mobile chemicals", + "topic": "LC-GD-8-1-2020" +},{ + "projectID": 648901, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101007587, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 706611, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 705334, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843234, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 798305, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 817527, + "title": "Valuing nature: mainstreaming natural capital in policies and in business decision-making", + "topic": "SC5-18-2018" +},{ + "projectID": 115975, + "title": "From ApoE biology to validated Alzheimer’s disease targets", + "topic": "IMI2-2015-05-06" +},{ + "projectID": 897784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 740920, + "title": "Economics of Cybersecurity", + "topic": "DS-04-2016" +},{ + "projectID": 872146, + "title": "Grounding RRI practices in research and innovation funding and performing organisations", + "topic": "SwafS-05-2018-2019" +},{ + "projectID": 955837, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 899265, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 956631, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101030103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 760331, + "title": "New Plant Breeding Techniques (NPBT) in molecular farming: Multipurpose crops for industrial bioproducts", + "topic": "BIOTEC-07-2017" +},{ + "projectID": 774632, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 776642, + "title": "Raw materials international co-operation", + "topic": "SC5-16-2016-2017" +},{ + "projectID": 737620, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 648161, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101023017, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 731166, + "title": "Cross-thematic ERA-NET on Applied Geosciences", + "topic": "LCE-26-2016" +},{ + "projectID": 706094, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101019284, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 734276, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 646869, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 644271, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 693523, + "title": "The cultural heritage of war in contemporary Europe", + "topic": "REFLECTIVE-5-2015" +},{ + "projectID": 101027784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 686585, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 658844, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101004052, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 860360, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 795272, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 722416, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 101022397, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 731761, + "title": "System abilities, development and pilot installations", + "topic": "ICT-26-2016" +},{ + "projectID": 740041, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 813239, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 727891, + "title": "Advancing basic biological knowledge and improving management tools for commercially important fish and other seafood species", + "topic": "SFS-21-2016-2017" +},{ + "projectID": 740916, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 654615, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 852048, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 686009, + "title": "Biomaterials for treatment and prevention of Alzheimer's disease", + "topic": "NMP-12-2015" +},{ + "projectID": 845427, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101007006, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 734801, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101018596, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SU-DRS04-2019-2020" +},{ + "projectID": 661480, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007738, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 101032922, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 956548, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 655475, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 799123, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 681257, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 876487, + "title": "ECSEL-2019-2-RIA", + "topic": "ECSEL-2019-2-RIA" +},{ + "projectID": 956150, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 727600, + "title": "Development of next generation biofuel technologies", + "topic": "LCE-08-2016-2017" +},{ + "projectID": 823846, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 893089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 675526, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 669504, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 743545, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 652831, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 872602, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 721236, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 813490, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 685474, + "title": "Metagenomics as innovation driver", + "topic": "BIOTEC-6-2015" +},{ + "projectID": 723360, + "title": "Development, production and use of high performance and lightweight materials for vessels and equipment", + "topic": "MG-2.2-2016" +},{ + "projectID": 101027914, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 963954, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 101027681, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 764364, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 898088, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 810057, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 751587, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 953110, + "title": "Open Innovation Test Beds for nano-pharmaceuticals production (IA)", + "topic": "DT-NMBP-06-2020" +},{ + "projectID": 797004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 776804, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 792624, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 702473, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 853390, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 746167, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 653508, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101023202, + "title": "Develop integral fractionation of lignocellulose to produce components for high-value applications", + "topic": "BBI-2020-SO2-R2" +},{ + "projectID": 837715, + "title": "Develop bio-based packaging products that are biodegradable/ compostable and/or recyclable", + "topic": "BBI.2018.SO3.R10" +},{ + "projectID": 824574, + "title": "Analysing gender gaps and biases in the allocation of grants", + "topic": "SwafS-10-2018" +},{ + "projectID": 846734, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 956813, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101000395, + "title": "Husbandry for quality and sustainability", + "topic": "FNR-05-2020" +},{ + "projectID": 638553, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 817841, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 853468, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 674846, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 101003476, + "title": "Addressing wild pollinators decline and its effects on biodiversity and ecosystem services", + "topic": "SC5-32-2020" +},{ + "projectID": 727495, + "title": "ERA-NET Cofund: Public-Public Partnerships in the bioeconomy", + "topic": "SFS-19-2016-2017" +},{ + "projectID": 708152, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101000622, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 640715, + "title": "Understanding, preventing and mitigating the potential environmental impacts and risks of shale gas exploration and exploitation", + "topic": "LCE-16-2014" +},{ + "projectID": 705875, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 861153, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 841089, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 800236, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 869336, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2018-2019-2020" +},{ + "projectID": 949652, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101001916, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 797188, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949052, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 795537, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101030604, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 800617, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101037328, + "title": "European capacities for citizen deliberation and participation for the Green Deal", + "topic": "LC-GD-10-1-2020" +},{ + "projectID": 894847, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862022, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101000580, + "title": "Bio-based industries leading the way in turning carbon dioxide emissions into chemicals", + "topic": "LC-FNR-13-2020" +},{ + "projectID": 633127, + "title": "Science in context: sample curation facility and scientific exploitation of data from Mars missions", + "topic": "COMPET-08-2014" +},{ + "projectID": 778388, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 831434, + "title": "Targeted immune intervention for the management of non-response and relapse", + "topic": "IMI2-2018-14-01" +},{ + "projectID": 951902, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 948281, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 848166, + "title": "Stratified host-directed approaches to improve prevention, treatment and/or cure of infectious diseases", + "topic": "SC1-BHC-14-2019" +},{ + "projectID": 834610, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 769142, + "title": "Innovative ICT solutions for future logistics operations", + "topic": "MG-5-2-2017" +},{ + "projectID": 956697, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 746361, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 956720, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 774078, + "title": "Plant Molecular Factory", + "topic": "BB-07-2017" +},{ + "projectID": 817619, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 813439, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 894223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101031558, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101000339, + "title": "Stepping up integrated pest management", + "topic": "SFS-06-2018-2020" +},{ + "projectID": 657434, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101000471, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 773830, + "title": "Co-fund on One Health (zoonoses – emerging threats)", + "topic": "SFS-36-2017" +},{ + "projectID": 101006618, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 728055, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 696364, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 955374, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 897389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 744310, + "title": "Valorisation of by-products or waste-streams from the food processing industry into high added-value products for market applications", + "topic": "BBI-2016-F01" +},{ + "projectID": 862957, + "title": "Alternative proteins for food and feed", + "topic": "LC-SFS-17-2019" +},{ + "projectID": 101000770, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 863039, + "title": "Fuelling the potential of advisors for innovation", + "topic": "RUR-16-2019" +},{ + "projectID": 862590, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 773682, + "title": "Closing loops at farm and regional levels to mitigate GHG emissions and environmental contamination - focus on carbon, nitrogen and phosphorus cycling in agro-ecosystems", + "topic": "SFS-30-2017" +},{ + "projectID": 773649, + "title": "Closing loops at farm and regional levels to mitigate GHG emissions and environmental contamination - focus on carbon, nitrogen and phosphorus cycling in agro-ecosystems", + "topic": "SFS-30-2017" +},{ + "projectID": 898013, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 797162, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794040, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101000496, + "title": "Defossilising agriculture – solutions and pathways for fossil-energy-free farming", + "topic": "LC-FNR-06-2020" +},{ + "projectID": 708986, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 696356, + "title": "Monitoring and mitigation of agricultural and forestry greenhouse gases (GHG)", + "topic": "ISIB-12c-2015" +},{ + "projectID": 652642, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2014" +},{ + "projectID": 652707, + "title": "Bridging research and innovation efforts for a sustainable bioeconomy", + "topic": "ISIB-08b-2014" +},{ + "projectID": 101017054, + "title": "Research and Innovation boosting promising robotics applications", + "topic": "ICT-47-2020" +},{ + "projectID": 872019, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 773921, + "title": "Bee health and sustainable pollination", + "topic": "SFS-16-2017" +},{ + "projectID": 817669, + "title": "Sustainable harvesting of marine biological resources", + "topic": "LC-BG-03-2018" +},{ + "projectID": 727864, + "title": "Increase overall transparency of processed agri-food products", + "topic": "SFS-45-2016" +},{ + "projectID": 841882, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000501, + "title": "Prospecting aquatic and terrestrial natural biological resources for biologically active compounds", + "topic": "FNR-11-2020" +},{ + "projectID": 727933, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 728061, + "title": "On-farm demonstrations: deepening farmer-to-farmer learning mechanisms", + "topic": "RUR-11-2016" +},{ + "projectID": 635643, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 772705, + "title": "Networking European farms to boost thematic knowledge exchanges and close the innovation gap", + "topic": "RUR-12-2017" +},{ + "projectID": 658031, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 814258, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 727486, + "title": "Support Action to a common agricultural and wider bioeconomy research agenda", + "topic": "SFS-25-2016" +},{ + "projectID": 101000213, + "title": "Healthy terrestrial livestock microbial ecosystems for sustainable production", + "topic": "SFS-02-2020" +},{ + "projectID": 101000662, + "title": "Developing long-term monitoring and evaluation frameworks for the Common Agricultural Policy", + "topic": "FNR-02-2020" +},{ + "projectID": 730924, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 696394, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 727895, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 652671, + "title": "Sustainable intensification pathways of agro-food systems in Africa", + "topic": "SFS-06-2014" +},{ + "projectID": 842009, + "title": "Digital solutions and e-tools to modernize the CAP", + "topic": "RUR-20-2018" +},{ + "projectID": 824546, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 101000258, + "title": "Towards a European research and innovation roadmap on soils and land management", + "topic": "FNR-04-2020" +},{ + "projectID": 818116, + "title": "Supporting microbiome coordination and the International Bioeconomy Forum", + "topic": "SFS-32-2018" +},{ + "projectID": 770747, + "title": "Socio-eco-economics – socio-economics in ecological approaches", + "topic": "SFS-29-2017" +},{ + "projectID": 754380, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 101000594, + "title": "Innovative agri-food value chains: boosting sustainability-oriented competitiveness", + "topic": "RUR-06-2020" +},{ + "projectID": 862050, + "title": "Improving animal welfare", + "topic": "SFS-08-2018-2019" +},{ + "projectID": 955330, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 793855, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101000250, + "title": "Husbandry for quality and sustainability", + "topic": "FNR-05-2020" +},{ + "projectID": 692276, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 817642, + "title": "Building modern rural policies on long-term visions and societal engagement", + "topic": "RUR-01-2018-2019" +},{ + "projectID": 857202, + "title": "Agricultural digital integration platforms", + "topic": "DT-ICT-08-2019" +},{ + "projectID": 818182, + "title": "ICT Innovation for agriculture – Digital Innovation Hubs for Agriculture", + "topic": "DT-RUR-12-2018" +},{ + "projectID": 862993, + "title": "Climate-smart and resilient farming", + "topic": "LC-SFS-19-2018-2019" +},{ + "projectID": 727450, + "title": "Water farms – improving farming and its impact on the supply of drinking water", + "topic": "RUR-04-2016" +},{ + "projectID": 817696, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 772835, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 818789, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101011290, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 761743, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 818488, + "title": "Enabling the farm advisor community to prepare farmers for the digital age", + "topic": "RUR-13-2018" +},{ + "projectID": 696231, + "title": "Sustainable livestock production", + "topic": "ISIB-12e-2015" +},{ + "projectID": 773418, + "title": "Optimising interactive innovation project approaches and the delivery of EU policies to speed up innovation in rural areas", + "topic": "RUR-16-2017" +},{ + "projectID": 678168, + "title": "Strategies for crop productivity, stability and quality", + "topic": "SFS-05-2015" +},{ + "projectID": 101000788, + "title": "Connecting consumers and producers in innovative agri-food supply chains", + "topic": "RUR-05-2020" +},{ + "projectID": 785919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 887259, + "title": "Produce bio-based functional ingredients and additives for high-end markets", + "topic": "BBI-2019-SO3-D3" +},{ + "projectID": 718403, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 830698, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 687295, + "title": "Passive means to reduce the impact of Space Debris", + "topic": "PROTEC-1-2015" +},{ + "projectID": 836780, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 763899, + "title": "Novel public policies, business models and mechanisms for the sustainable supply of and payment for forest ecosystem services", + "topic": "RUR-05-2017" +},{ + "projectID": 836989, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 725848, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 821270, + "title": "Development of 94 GHz (W-band) Radar Components", + "topic": "JTI-CS2-2017-CfP07-SYS-01-10" +},{ + "projectID": 846860, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 751918, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 797446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 771134, + "title": "ERA-NET Cofund: Public-Public Partnerships in the bioeconomy", + "topic": "SFS-19-2016-2017" +},{ + "projectID": 653522, + "title": "Disaster Resilience & Climate Change topic 1: Science and innovation for adaptation to climate change: from assessing costs, risks and opportunities to demonstration of options and practices", + "topic": "DRS-09-2014" +},{ + "projectID": 836443, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 817564, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 840978, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 757833, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101023370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 642130, + "title": "Strategic international dialogues and cooperation on raw materials with technologically advanced countries", + "topic": "SC5-13b-2014" +},{ + "projectID": 813114, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 834169, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 756998, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 656564, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 677140, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101030246, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 702869, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 855187, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 723311, + "title": "Large-scale demonstration(s) of cooperative ITS", + "topic": "MG-6.2-2016" +},{ + "projectID": 693599, + "title": "ICT-enabled open government", + "topic": "INSO-1-2015" +},{ + "projectID": 793450, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707481, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 957751, + "title": "Smart Cities and Communities", + "topic": "LC-SC3-SCC-1-2018-2019-2020" +},{ + "projectID": 798319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654132, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 968107, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 854360, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 750587, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 727762, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 746396, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 883532, + "title": "Prevention, detection, response and mitigation of combined physical and cyber threats to critical infrastructure in Europe", + "topic": "SU-INFRA01-2018-2019-2020" +},{ + "projectID": 891702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637776, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 796451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101009212, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 656381, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 661515, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 661678, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 749594, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 875538, + "title": "Aviation operations impact on climate change (InCo flagship)", + "topic": "LC-MG-1-6-2019" +},{ + "projectID": 720032, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 965502, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 869673, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 655272, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 645654, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 101031748, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 887106, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 765881, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 708844, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 894154, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727619, + "title": "International Cooperation with South Korea on new generation high-efficiency capture processes", + "topic": "LCE-24-2016" +},{ + "projectID": 642242, + "title": "Climate change mitigation options", + "topic": "SC5-05a-2014" +},{ + "projectID": 827231, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 731205, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 842325, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 690958, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101020872, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 802605, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 672051, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 825147, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 837626, + "title": "Research, innovation and educational capacities for energy transition", + "topic": "LC-SC3-CC-5-2018" +},{ + "projectID": 101005301, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 792236, + "title": "Establish cooperation and partnership with brand owners and consumer representatives to improve the market access of sustainable bio-based products", + "topic": "BBI.2017.S1" +},{ + "projectID": 780747, + "title": "Startup Europe for Growth and Innovation Radar", + "topic": "ICT-32-2017" +},{ + "projectID": 101033741, + "title": "Financing for energy efficiency investments - Smart Finance for Smart Buildings", + "topic": "LC-SC3-B4E-11-2020" +},{ + "projectID": 792040, + "title": "Improving access by innovative SMEs to alternative forms of finance", + "topic": "ALTFI-01-2017" +},{ + "projectID": 862980, + "title": "Alternative proteins for food and feed", + "topic": "LC-SFS-17-2019" +},{ + "projectID": 720762, + "title": "Communication and awareness", + "topic": "BBI.S2-2015" +},{ + "projectID": 693796, + "title": "Communication and dissemination platform", + "topic": "REFLECTIVE-8-2015" +},{ + "projectID": 101037866, + "title": "Pan-European advanced manufacturing assistance and training for SMEs", + "topic": "INNOSUP-08-2020" +},{ + "projectID": 101017603, + "title": "Scaling up innovation for active and healthy ageing", + "topic": "SC1-HCC-08-2020" +},{ + "projectID": 101017283, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 101023516, + "title": "Expand circular economy to include the underexploited circular bioeconomy", + "topic": "BBI-2020-SO4-S4" +},{ + "projectID": 833291, + "title": "Strategic pre-commercial procurements of innovative, advanced systems to support security", + "topic": "SU-GM02-2018-2020" +},{ + "projectID": 101017105, + "title": "International partnership building between European and African innovation hubs", + "topic": "ICT-58-2020" +},{ + "projectID": 705972, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101022484, + "title": "Low carbon industrial production using CCUS", + "topic": "LC-SC3-NZE-5-2020" +},{ + "projectID": 822458, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 680507, + "title": "Recovery technologies for metals and other minerals", + "topic": "SPIRE-07-2015" +},{ + "projectID": 101036100, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 873854, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101026951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730098, + "title": "Downstream services for public authorities", + "topic": "EO-2-2016" +},{ + "projectID": 818994, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 749924, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 768576, + "title": "Development of near zero energy building renovation", + "topic": "EEB-05-2017" +},{ + "projectID": 672528, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014" +},{ + "projectID": 706151, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 743527, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 795442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 778322, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 639070, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 745744, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 885498, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655150, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 957117, + "title": "Socio-economic research: non-energy impacts and behavioural insights on energy efficiency interventions", + "topic": "LC-SC3-EC-4-2020" +},{ + "projectID": 730426, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 681715, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101028348, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 708672, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 765553, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 642047, + "title": "Dissemination and exploitation, ICT, knowledge, gaps, research needs, etc", + "topic": "WATER-4a-2014" +},{ + "projectID": 638271, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 792370, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 893527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 824478, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101027577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 862428, + "title": "All Atlantic Ocean Research Alliance Flagship", + "topic": "BG-08-2018-2019" +},{ + "projectID": 101033221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 882216, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 715254, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 838560, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 700191, + "title": "Disaster Resilience & Climate Change topic 3: Mitigating the impacts of climate change and natural hazards on cultural heritage sites, structures and artefacts", + "topic": "DRS-11-2015" +},{ + "projectID": 808402, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101033614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 657016, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654013, + "title": "Sustainable Industry Low Carbon II", + "topic": "SILC-II-2014" +},{ + "projectID": 689162, + "title": "A coordination platform", + "topic": "WATER-5b-2015" +},{ + "projectID": 101025525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 659191, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 831040, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 835381, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 746205, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 795970, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 887376, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101039118, + "title": "Delivery of knowledge for climate adaptation and mitigation through the GEOSS infrastructure (Global Earth Observation System of Systems)", + "topic": "IBA-CROSS-GEOSS-2021" +},{ + "projectID": 869395, + "title": "Human dynamics of climate change", + "topic": "LC-CLA-05-2019" +},{ + "projectID": 649733, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2014" +},{ + "projectID": 860246, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 892522, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 743637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655914, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 720770, + "title": "Bioconversion of non-agricultural waste into biomolecules for industrial applications", + "topic": "BIOTEC-02-2016" +},{ + "projectID": 723670, + "title": "Industrial technologies for the valorisation of European bio-resources into high added value process streams", + "topic": "SPIRE-03-2016" +},{ + "projectID": 101000790, + "title": "Bio-based industries leading the way in turning carbon dioxide emissions into chemicals", + "topic": "LC-FNR-13-2020" +},{ + "projectID": 745591, + "title": "New sources of proteins for animal feed from co-products to address the EU protein gap", + "topic": "BBI-2016-D08" +},{ + "projectID": 818310, + "title": "Development of next generation biofuels and alternative renewable fuel technologies for road transport", + "topic": "LC-SC3-RES-21-2018" +},{ + "projectID": 761042, + "title": "Microbial platforms for CO2-reuse processes in the low-carbon economy", + "topic": "BIOTEC-05-2017" +},{ + "projectID": 817936, + "title": "Towards healthier and sustainable food", + "topic": "SFS-16-2018" +},{ + "projectID": 657867, + "title": "Demonstrating advanced biofuel technologies", + "topic": "LCE-12-2014" +},{ + "projectID": 635340, + "title": "Novel marine derived biomolecules and industrial biomaterials", + "topic": "BG-03-2014" +},{ + "projectID": 654110, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 958730, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 660481, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706330, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 701192, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 818368, + "title": "Microbiome applications for sustainable food systems", + "topic": "LC-SFS-03-2018" +},{ + "projectID": 778098, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 720714, + "title": "Overcoming low product yields from fermentation processes", + "topic": "BBI.D7-2015" +},{ + "projectID": 876127, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870759, + "title": "Societal challenges and the arts", + "topic": "TRANSFORMATIONS-17-2019" +},{ + "projectID": 764927, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 851614, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 802424, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 853758, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 892270, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 101028323, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637108, + "title": "Materials for building envelope", + "topic": "EeB-01-2014" +},{ + "projectID": 950408, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101028809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824256, + "title": "Virtual product development and production of all types of electrified vehicles and components", + "topic": "LC-GV-02-2018" +},{ + "projectID": 790507, + "title": "Proteins and other bioactive ingredients from side streams and residues", + "topic": "BBI.2017.R4" +},{ + "projectID": 745450, + "title": "Bio-based alternatives to improve protection of human health and the environment", + "topic": "BBI-2016-R06" +},{ + "projectID": 836884, + "title": "Develop bio-based packaging products that are biodegradable/ compostable and/or recyclable", + "topic": "BBI.2018.SO3.R10" +},{ + "projectID": 640771, + "title": "First application and market replication", + "topic": "WATER-1a-2014" +},{ + "projectID": 703399, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101018756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 799904, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703813, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 776617, + "title": "Biodiversity scenarios", + "topic": "SC5-32-2017" +},{ + "projectID": 892314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891712, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 701981, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 869327, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 748256, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 778298, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 810729, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 893103, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101009125, + "title": "H2020-EIC Accelerator pilot –SME Instrument - Green Deal", + "topic": "H2020-EIC-SMEInst-2020-4" +},{ + "projectID": 101016854, + "title": "Boost rural economies through cross-sector digital service platforms", + "topic": "DT-ICT-09-2020" +},{ + "projectID": 101024389, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 669105, + "title": "Functional additives from residues from the agro-food industry", + "topic": "BBI.VC3.D4" +},{ + "projectID": 101023260, + "title": "Help start-ups and spin-offs to gain access to finance", + "topic": "BBI-2020-SO4-S1" +},{ + "projectID": 895008, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 720815, + "title": "Pilot Line Manufacturing of Nanostructured Antimicrobial Surfaces using Advanced Nanosurface Functionalization Technologies", + "topic": "PILOTS-02-2016" +},{ + "projectID": 743582, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 953073, + "title": "Upcycling Bio Plastics of food and drinks packaging (RIA)", + "topic": "CE-BIOTEC-09-2020" +},{ + "projectID": 964545, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101023664, + "title": "Resolve supply-chain hurdles for turning residual waste streams into functional molecules for food and/or non-food market applications", + "topic": "BBI-2020-SO1-D1" +},{ + "projectID": 669003, + "title": "Fermentation processes to obtain biosurfactants and specialty carbohydrates from agricultural and agro-industrial streams", + "topic": "BBI.VC3.R6" +},{ + "projectID": 792261, + "title": "Competitive biodegradable, compostable and/or recyclable bio-based plastics for a sustainable end-of-life phase", + "topic": "BBI.2017.R6" +},{ + "projectID": 745737, + "title": "Valorisation of the organic content of wastewater as feedstock, contributing to the renewable circular economy", + "topic": "BBI-2016-R01" +},{ + "projectID": 884208, + "title": "Development of next generation biofuel and alternative renewable fuel technologies for aviation and shipping", + "topic": "LC-SC3-RES-23-2019" +},{ + "projectID": 101023200, + "title": "Provide insight on emerging technologies for bio-based value chains", + "topic": "BBI-2020-SO4-S2" +},{ + "projectID": 657533, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 887227, + "title": "Produce components for various materials, including for food and feed, from microalgae", + "topic": "BBI-2019-SO1-D2" +},{ + "projectID": 656847, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 705982, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 897866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 647857, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 706244, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 854742, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 708329, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023804, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 736141, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 863566, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 820235, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 704951, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 817035, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681529, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 789445, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824537, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 891124, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 951318, + "title": "IPCC secretariat", + "topic": "IBA-SC5-IPCC-2019" +},{ + "projectID": 101033386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101023567, + "title": "Use biogenic gaseous carbon to increase feedstock availability for the industry", + "topic": "BBI-2020-SO1-D2" +},{ + "projectID": 642575, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 640720, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2014" +},{ + "projectID": 101000349, + "title": "Strengthening the European agro-ecological research and innovation ecosystem", + "topic": "FNR-01-2020" +},{ + "projectID": 836942, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 681518, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 765937, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 672655, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2014-1" +},{ + "projectID": 669303, + "title": "H2020-Adhoc-2014-20", + "topic": "Environment" +},{ + "projectID": 834716, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 894712, + "title": "Bioclimatic approaches for improving energy performance in buildings in Africa and Europe", + "topic": "LC-SC3-EE-18-2019" +},{ + "projectID": 706011, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101026318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 701542, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 701652, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 716092, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 777803, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 726703, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 714916, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 805550, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 740750, + "title": "Pan European Networks of practitioners and other actors in the field of security", + "topic": "SEC-21-GM-2016-2017" +},{ + "projectID": 647035, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 796650, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656122, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 702057, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 638408, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 856543, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 775897, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 789213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101000348, + "title": "Diversifying revenue in rural Africa through bio-based solutions", + "topic": "CE-SFS-36-2020" +},{ + "projectID": 817779, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 735275, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 645775, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Russia and China", + "topic": "INT-01-2014" +},{ + "projectID": 813904, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 655240, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101033274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 784974, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 691150, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101026632, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 651230, + "title": "H2020-Adhoc-2014-20", + "topic": "Environment" +},{ + "projectID": 818837, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 799149, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 682707, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 852161, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 769886, + "title": "Shifting global geopolitics and Europe's preparedness for managing risks, mitigation actions and fostering peace", + "topic": "ENG-GLOBALLY-02-2017" +},{ + "projectID": 659152, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 720695, + "title": "Lignocellulosic feedstocks into chemical building blocks and high added value products", + "topic": "BBI.VC1.D1-2015" +},{ + "projectID": 789240, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 816553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659065, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029080, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 682172, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 744450, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 786483, + "title": "Joint Actions to foster innovative energy solutions in renewable energy technologies", + "topic": "LCE-35-2017" +},{ + "projectID": 101028321, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101036051, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 101018266, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 844643, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661431, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 897984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 758149, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 883315, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 662387, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 729401, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 691712, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2015" +},{ + "projectID": 852190, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101024886, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 729221, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101023713, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704409, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 753420, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891029, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 881472, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 834177, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 813329, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 674364, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 101028186, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101036069, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 894412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703107, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 726349, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101001608, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 862127, + "title": "Boosting the efficiency of photosynthesis (RIA)", + "topic": "BIOTEC-02-2019" +},{ + "projectID": 748295, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 867921, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737480, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655406, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 740342, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 951542, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 892654, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101024084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 862367, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 670518, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 798269, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101036089, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 714373, + "title": "HVDC Electrical Power Conversion and Distribution System Development", + "topic": "JTI-CS2-2015-CFP02-AIR-02-09" +},{ + "projectID": 704272, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 890574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 819202, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 757501, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 825417, + "title": "Setting the priorities for a European environment, climate and health research agenda", + "topic": "SC1-HCO-13-2018" +},{ + "projectID": 743798, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 725613, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 795999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 797387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 726176, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 690378, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 101029312, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746304, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 749557, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 739763, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 101036388, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +},{ + "projectID": 758873, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 957824, + "title": "Smart Airports", + "topic": "LC-SC3-SA-1-2020" +},{ + "projectID": 773983, + "title": "Strategies for improving the bioeconomy knowledge of the general public", + "topic": "BB-08-2017" +},{ + "projectID": 859450, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 844703, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 857840, + "title": "Retrofit Solutions and Next Generation Propulsion for Waterborne Transport", + "topic": "LC-MG-1-8-2019" +},{ + "projectID": 674441, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 895388, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 704822, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 746136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 855570, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 691732, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2015" +},{ + "projectID": 633680, + "title": "Towards a gradual elimination of discards in European fisheries", + "topic": "SFS-09-2014" +},{ + "projectID": 862844, + "title": "WIRE X Conference", + "topic": "IBA-SEWP-WIRE-10-2019" +},{ + "projectID": 700986, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 844027, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 649789, + "title": "Project development assistance for innovative bankable and aggregated sustainable energy investment schemes and projects", + "topic": "EE-20-2014" +},{ + "projectID": 101007019, + "title": "The European mobility culture of tomorrow: Reinventing the wheel?", + "topic": "MG-4-9-2020" +},{ + "projectID": 748766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 776708, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 821054, + "title": "Resilience and sustainable reconstruction of historic areas to cope with climate change and hazard events", + "topic": "LC-CLA-04-2018" +},{ + "projectID": 101030463, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 896069, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691131, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 891943, + "title": "Socio-economic research conceptualising and modelling energy efficiency and energy demand", + "topic": "LC-SC3-EE-14-2018-2019-2020" +},{ + "projectID": 727973, + "title": "Legumes - transition paths to sustainable legume-based farming systems and agri-feed and food chains", + "topic": "SFS-26-2016" +},{ + "projectID": 790157, + "title": "Proteins and other bioactive ingredients from side streams and residues", + "topic": "BBI.2017.R4" +},{ + "projectID": 745622, + "title": "Exploiting algae and other aquatic biomass for production of molecules for pharma, nutraceuticals, food additives and cosmetic applications", + "topic": "BBI-2016-R09" +},{ + "projectID": 719783, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 781332, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 655565, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 657195, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 791413, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 886483, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700615, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-1-2015" +},{ + "projectID": 785211, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 101032969, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 661118, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 699395, + "title": "Environment and Meteorology in ATM", + "topic": "Sesar-04-2015" +},{ + "projectID": 774271, + "title": "New partnerships and tools to enhance European capacities for in-situ conservation", + "topic": "SFS-04-2017" +},{ + "projectID": 952396, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 689682, + "title": "More effective ecosystem restoration in the EU", + "topic": "SC5-07-2015" +},{ + "projectID": 677756, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 765389, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101003517, + "title": "Integrated GEOSS climate applications to support adaptation and mitigation measures of the Paris Agreement", + "topic": "LC-CLA-19-2020" +},{ + "projectID": 874741, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 694452, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 101030725, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730008, + "title": "Evolution of Copernicus services", + "topic": "EO-3-2016" +},{ + "projectID": 101025938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027274, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 690857, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 795315, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 703258, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891230, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795079, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 654462, + "title": "Enabling decarbonisation of the fossil fuel-based power sector and energy intensive industry through CCS", + "topic": "LCE-15-2015" +},{ + "projectID": 797007, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 794063, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 689150, + "title": "Integrated approaches to food security, low-carbon energy, sustainable water management and climate change mitigation:", + "topic": "WATER-2b-2015" +},{ + "projectID": 644400, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 101036505, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 647038, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 677039, + "title": "Forecasting and anticipating effects of climate change on fisheries and aquaculture", + "topic": "BG-02-2015" +},{ + "projectID": 892006, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 712214, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 825272, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 764706, + "title": "Highly flexible and efficient fossil fuel power plants", + "topic": "LCE-28-2017" +},{ + "projectID": 644204, + "title": "Advanced digital gaming/gamification technologies", + "topic": "ICT-21-2014" +},{ + "projectID": 655649, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 654237, + "title": "e-Infrastructure policy development and international cooperation", + "topic": "INFRASUPP-7-2014" +},{ + "projectID": 700416, + "title": "Critical Infrastructure Protection topic 1: Critical Infrastructure “smart grid” protection and resilience under “smart meters” threats", + "topic": "DRS-12-2015" +},{ + "projectID": 730617, + "title": "Development of functional requirements for sustainable and attractive European Rail Freight", + "topic": "S2R-CFM-IP5-01-2015" +},{ + "projectID": 951288, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 101036401, + "title": "Accelerating the green transition and energy access Partnership with Africa", + "topic": "LC-GD-2-3-2020" +},{ + "projectID": 658120, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 679302, + "title": "Assessing sustainability of terrestrial livestock production", + "topic": "SFS-01c-2015" +},{ + "projectID": 101025549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 674628, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 704566, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 755865, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 951991, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 812975, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 731053, + "title": "Support to policies and international cooperation for e-infrastructures", + "topic": "INFRASUPP-03-2016" +},{ + "projectID": 956137, + "title": "Industrial software codes for extreme scale computing environments and applications", + "topic": "EuroHPC-03-2019" +},{ + "projectID": 101032687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 680884, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 662268, + "title": "Nuclear developments and interaction with society", + "topic": "NFRP-12-2014" +},{ + "projectID": 956090, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 882550, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 881791, + "title": "Integrated mobility management (I2M), Energy and Noise & Vibration", + "topic": "S2R-CFM-CCA-01-2019" +},{ + "projectID": 749971, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 852529, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 702468, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731148, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 706088, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 840374, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 795641, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 755753, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 840783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 649594, + "title": "Societal and political engagement of young people and their perspectives on Europe", + "topic": "YOUNG-5b-2014" +},{ + "projectID": 676819, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101017448, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 806766, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101003304, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 812616, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 958200, + "title": "Raw materials innovation for the circular economy: sustainable processing, reuse, recycling and recovery schemes", + "topic": "CE-SC5-07-2020" +},{ + "projectID": 645024, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 745667, + "title": "Bioeconomy related open access research infrastructure and assessing its capabilities for industry driven development projects", + "topic": "BBI-2016-S02" +},{ + "projectID": 730813, + "title": "Start-up activities for Freight Automation", + "topic": "S2R-CFM-IP5-02-2015" +},{ + "projectID": 745906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 774629, + "title": "Tools and technologies for coordination and integration of the European energy system", + "topic": "LCE-05-2017" +},{ + "projectID": 890201, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 785635, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 655889, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 658651, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 956030, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 884532, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 884318, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 745959, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 882564, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835067, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 844028, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730818, + "title": "Energy and sustainability, including noise and vibrations baselines assessment", + "topic": "S2R-CFM-CCA-02-2015" +},{ + "projectID": 793226, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101014520, + "title": "Completion of activities for Adaptable Communication, Moving Block, Fail safe Train Localisation (including satellite), Zero on site Testing, Formal Methods and Cyber Security", + "topic": "S2R-CFM-IP2-01-2020" +},{ + "projectID": 709746, + "title": "Valorisation of cellulose into new added value products", + "topic": "BBI.VC2.F2" +},{ + "projectID": 101027136, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 795747, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657853, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 777513, + "title": "Improving railway services for users and operators", + "topic": "S2R-CFM-CCA-01-2017" +},{ + "projectID": 899824, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101021859, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101016835, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 768748, + "title": "Potential of Industrial Symbiosis in Europe", + "topic": "SPIRE-13-2017" +},{ + "projectID": 881778, + "title": "Smart, data-based assets and efficient rail freight operation", + "topic": "S2R-CFM-IP5-01-2019" +},{ + "projectID": 777717, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 833481, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 750673, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893443, + "title": "Accelerating Change in ATM", + "topic": "SESAR-ER4-07-2019" +},{ + "projectID": 643937, + "title": "Big data and Open Data Innovation and take-up", + "topic": "ICT-15-2014" +},{ + "projectID": 101012456, + "title": "Research into optimised and future railway infrastructure", + "topic": "S2R-CFM-IP3-01-2020" +},{ + "projectID": 658041, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885646, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 657865, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 694126, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 869353, + "title": "Development of commercial activities and services through the use of GEOSS and Copernicus data", + "topic": "SC5-16-2019" +},{ + "projectID": 696502, + "title": "SME business model innovation", + "topic": "INSO-10-2015-1" +},{ + "projectID": 709747, + "title": "Supporting structural change in research organisations to promote Responsible Research and Innovation", + "topic": "ISSI-5-2015" +},{ + "projectID": 860414, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 871741, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 777397, + "title": "Biomanufacturing 2020: Development of Innovative high throughput analytical tools and methods to characterize cell culture fluid during development and commercial cell culture processes", + "topic": "IMI2-2016-10-05" +},{ + "projectID": 642662, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 739508, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2016-2017" +},{ + "projectID": 722429, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 715268, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 732703, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 713694, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 876852, + "title": "ECSEL-2019-2-RIA", + "topic": "ECSEL-2019-2-RIA" +},{ + "projectID": 828966, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 665630, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 101017186, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 634200, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2014-EID" +},{ + "projectID": 857897, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 955422, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 675683, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 732344, + "title": "FET Proactive: emerging themes and communities", + "topic": "FETPROACT-01-2016" +},{ + "projectID": 846142, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101031139, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704585, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 657123, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 857742, + "title": "MSCA for researchers at risk", + "topic": "H2020-MSCA-RR-2018" +},{ + "projectID": 805912, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 788951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656995, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 841905, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862788, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 853045, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 881806, + "title": "Completion of activities for enhanced automation systems (including Freight ATO GoA4), train integrity, object controller (IP2 and IP5).", + "topic": "S2R-CFM-IP2-01-2019" +},{ + "projectID": 765212, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101028379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841980, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 824634, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 834271, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 781793, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 952384, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 795574, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 829640, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 652757, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648291, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 695075, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 742648, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 646436, + "title": "Market uptake of existing and emerging renewable electricity, heating and cooling technologies", + "topic": "LCE-04-2014" +},{ + "projectID": 101022829, + "title": "International cooperation with Canada on advanced biofuels and bioenergy", + "topic": "LC-SC3-RES-36-2020" +},{ + "projectID": 706172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 891090, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 720720, + "title": "Valorisation of agricultural residues and side streams from the agro-food industry", + "topic": "BBI.VC3.D5-2015" +},{ + "projectID": 727818, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 770889, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 730640, + "title": "Start-up activities for advanced signalling and automation system", + "topic": "S2R-CFM-IP2-01-2015" +},{ + "projectID": 956623, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 899580, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 811232, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 101017899, + "title": "Environmental Intelligence", + "topic": "FETPROACT-EIC-08-2020" +},{ + "projectID": 716211, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 675412, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101017141, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 860197, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 721045, + "title": "Advanced materials solutions and architectures for high efficiency solar energy harvesting", + "topic": "NMBP-17-2016" +},{ + "projectID": 777402, + "title": "Real-time information applications and energy efficient solutions for rail freight", + "topic": "S2R-CFM-IP5-01-2017" +},{ + "projectID": 644839, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 745578, + "title": "Biopolymers with advanced functionalities for high performance applications", + "topic": "BBI-2016-R07" +},{ + "projectID": 641386, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 958196, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 792824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 800586, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024045, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101001905, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 641939, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101046258, + "title": "R&I impact and benefits to make rail attractive for stakeholders", + "topic": "S2R-OC-CCA-01-2021" +},{ + "projectID": 101007321, + "title": "ECSEL-IA", + "topic": "ECSEL-2020-1-IA" +},{ + "projectID": 881771, + "title": "Noise & Vibration", + "topic": "S2R-OC-CCA-01-2019" +},{ + "projectID": 776577, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 954377, + "title": "Understanding and mitigating the effects on public health of emerging non-regulated nanoparticle emissions issues and noise", + "topic": "LC-MG-1-14-2020" +},{ + "projectID": 730811, + "title": "Improved vehicle/train dynamics", + "topic": "S2R-OC-IP5-02-2015" +},{ + "projectID": 839937, + "title": "Next-generation of Energy Performance Assessment and Certification", + "topic": "LC-SC3-EE-5-2018-2019-2020" +},{ + "projectID": 955700, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101046657, + "title": "Digital Automated Coupler innovation for the European Delivery Programme", + "topic": "S2R-OC-IP5-01-2021" +},{ + "projectID": 860775, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 952953, + "title": "Reduce the cost and increase performance and reliability of CSP plants", + "topic": "LC-SC3-RES-35-2020" +},{ + "projectID": 777465, + "title": "Enhancing railway signalling systems thanks to applying satellite positioning; developing an on-board safe Train Integrity; applying formal methods approach and standardised interfaces, and enhancing Traffic Management System (TMS) functions", + "topic": "S2R-CFM-IP2-01-2017" +},{ + "projectID": 874656, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 671603, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 644938, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 957557, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 637107, + "title": "Symbiotic human-robot collaboration for safe and dynamic multimodal manufacturing systems", + "topic": "FoF-06-2014" +},{ + "projectID": 956124, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101004051, + "title": "Formulation of the freight train of the future", + "topic": "S2R-CFM-IP5-01-2020" +},{ + "projectID": 955923, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 674875, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 722022, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 731599, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2016" +},{ + "projectID": 956256, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 949624, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 956803, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 642935, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 737422, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 765739, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 636592, + "title": "MG-3.1-2014: Technologies for low emission powertrains", + "topic": "MG-3.1-2014" +},{ + "projectID": 639365, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 691739, + "title": "Modelling and analysing the energy system, its transformation and impacts", + "topic": "LCE-21-2015" +},{ + "projectID": 645403, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 671680, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 679722, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 742733, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 826151, + "title": "Virtual certification & smart planning", + "topic": "S2R-CFM-CCA-01-2018" +},{ + "projectID": 671500, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 834862, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 730816, + "title": "Start-up activities for System Platform Demonstrator Integrated Assessment and socio-economic effects", + "topic": "S2R-CFM-CCA-01-2015" +},{ + "projectID": 750564, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101025599, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 765502, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 688329, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 101016906, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 777629, + "title": "Development of new technological concepts towards the next generation of rolling stock, applied to major subsystems such as Carbody, Running Gear, Brakes, Doors and Modular interiors", + "topic": "S2R-CFM-IP1-01-2017" +},{ + "projectID": 769346, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 691714, + "title": "Innovation and technologies for the deployment of meshed off-shore grids", + "topic": "LCE-05-2015" +},{ + "projectID": 645149, + "title": "Smart Cyber-Physical Systems", + "topic": "ICT-01-2014" +},{ + "projectID": 864189, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 945234, + "title": "Support for safety research of Small Modular Reactors", + "topic": "NFRP-2019-2020-05" +},{ + "projectID": 898762, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 832907, + "title": "Cybersecurity in the Electrical Power and Energy System (EPES): an armour against cyber and privacy attacks and data breaches", + "topic": "SU-DS04-2018-2020" +},{ + "projectID": 641416, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 945341, + "title": "Safety Research and Innovation for advanced nuclear systems", + "topic": "NFRP-2019-2020-06" +},{ + "projectID": 964016, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 687902, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 723853, + "title": "Machinery and robot systems in dynamic shop floor environments using novel embedded cognitive functions", + "topic": "FOF-02-2016" +},{ + "projectID": 812818, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 731101, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 815191, + "title": "5G", + "topic": "EUK-02-2018" +},{ + "projectID": 884807, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 640369, + "title": "In-Orbit demonstration/Validation (IOD/IOV)", + "topic": "COMPET-05-2014" +},{ + "projectID": 675137, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 953201, + "title": "Next generation organ-on-chip (RIA-LS)", + "topic": "DT-NMBP-23-2020" +},{ + "projectID": 642192, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 881803, + "title": "Tools, methodologies and technological development of next generation of Running Gear", + "topic": "S2R-OC-IP1-02-2019" +},{ + "projectID": 682537, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101017180, + "title": "Disruptive photonics technologies", + "topic": "ICT-36-2020" +},{ + "projectID": 101023166, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 952150, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 769980, + "title": "Big data in Transport: Research opportunities, challenges and limitations", + "topic": "MG-8-2-2017" +},{ + "projectID": 851957, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 731869, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 955605, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 738085, + "title": "Structural energy storage and power generation functionalities in multifunctional composite structures", + "topic": "JTI-CS2-2016-CFP03-LPA-02-11" +},{ + "projectID": 101037085, + "title": "Innovative land-based and offshore renewable energy technologies and their integration into the energy system", + "topic": "LC-GD-2-1-2020" +},{ + "projectID": 101002013, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 671636, + "title": "Advanced 5G Network Infrastructure for the Future Internet", + "topic": "ICT-14-2014" +},{ + "projectID": 755605, + "title": "Green Turboprop - High lift configuration integrating adaptive wing concept - Low Speed experimental validation", + "topic": "JTI-CS2-2016-CFP04-REG-01-05" +},{ + "projectID": 777564, + "title": "Tools, methodologies and technological development of the next generation of Running Gear", + "topic": "S2R-OC-IP1-02-2017" +},{ + "projectID": 763565, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 770523, + "title": "Strengthening Europe's position in the global context: science diplomacy and intercultural relations", + "topic": "ENG-GLOBALLY-01-2017" +},{ + "projectID": 101021019, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 872698, + "title": "Smart Anything Everywhere", + "topic": "DT-ICT-01-2019" +},{ + "projectID": 722401, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 797777, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 730105, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 642877, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 732189, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 664823, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 787516, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 688971, + "title": "International cooperation in aeronautics with China", + "topic": "MG-1.10-2015" +},{ + "projectID": 769115, + "title": "Multi-Brand platooning in real traffic conditions", + "topic": "ART-03-2017" +},{ + "projectID": 731063, + "title": "User-driven e-infrastructure innovation", + "topic": "EINFRA-22-2016" +},{ + "projectID": 864720, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 644122, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 783190, + "title": "RIA", + "topic": "ECSEL-2017-2" +},{ + "projectID": 636032, + "title": "New generation of rail vehicles", + "topic": "MG-2.3-2014" +},{ + "projectID": 780283, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 881807, + "title": "Development of new technological concepts towards the next generation of rolling stock, applied to major subsystems such as Car body, Running Gear, Brakes, Doors, Modular interiors and HVAC", + "topic": "S2R-CFM-IP1-01-2019" +},{ + "projectID": 895938, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 664592, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 820423, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 760994, + "title": "Microbial platforms for CO2-reuse processes in the low-carbon economy", + "topic": "BIOTEC-05-2017" +},{ + "projectID": 826255, + "title": "Research into optimized and future railway infrastructure", + "topic": "S2R-CFM-IP3-01-2018" +},{ + "projectID": 826206, + "title": "Technology demonstrators for competitive, intelligent rail freight operation", + "topic": "S2R-CFM-IP5-01-2018" +},{ + "projectID": 952593, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 692653, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 863222, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 826141, + "title": "Advanced Signalling, Automation and Communication System (IP2 and IP5)", + "topic": "S2R-CFM-IP2-01-2018" +},{ + "projectID": 680735, + "title": "Flexible production systems based on integrated tools for rapid reconfiguration of machinery and robots", + "topic": "FoF-11-2015" +},{ + "projectID": 644039, + "title": "Smart System Integration", + "topic": "ICT-02-2014" +},{ + "projectID": 690699, + "title": "Demonstrating and testing innovative solutions for cleaner and better urban transport and mobility", + "topic": "MG-5.5a-2015" +},{ + "projectID": 846739, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 737469, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 825429, + "title": "Flexible and Wearable Electronics", + "topic": "ICT-02-2018" +},{ + "projectID": 661416, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 765955, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 869815, + "title": "Digital technologies for improved performance in cognitive production plants (IA)", + "topic": "DT-SPIRE-06-2019" +},{ + "projectID": 730814, + "title": "Integrated Mobility and Safety Management", + "topic": "S2R-CFM-CCA-03-2015" +},{ + "projectID": 708281, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 668036, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 796426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101002490, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 769088, + "title": "Maintaining industrial leadership in aeronautics", + "topic": "MG-1.3-2017" +},{ + "projectID": 794378, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 641321, + "title": "Knowing, doing, being: cognition beyond problem solving", + "topic": "FETPROACT-2-2014" +},{ + "projectID": 638314, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 899814, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 662167, + "title": "Regional initiative aiming at nuclear research and training capacity building", + "topic": "NFRP-14-2014" +},{ + "projectID": 654371, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 715672, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 828893, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101036519, + "title": "Towards Climate-Neutral and Socially Innovative Cities", + "topic": "LC-GD-1-2-2020" +},{ + "projectID": 675008, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 771928, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 731218, + "title": "Demonstration of smart grid, storage and system integration technologies with increasing share of renewables: distribution system", + "topic": "LCE-02-2016" +},{ + "projectID": 721394, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 824962, + "title": "Electronic Smart Systems (ESS)", + "topic": "ICT-07-2018" +},{ + "projectID": 101017408, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 813367, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 789524, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 776322, + "title": "Technologies for European non-dependence and competitiveness", + "topic": "COMPET-1-2017" +},{ + "projectID": 717516, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015" +},{ + "projectID": 875285, + "title": "Structuring R&I towards zero emission waterborne transport", + "topic": "LC-MG-1-11-2019" +},{ + "projectID": 695331, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 869154, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 667205, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 658876, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 706055, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 889258, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 841527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 636746, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 782099, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 644320, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 818602, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 101022386, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 707624, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895432, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657876, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 793403, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 635557, + "title": "Downstream processes unlocking biotechnological transformations", + "topic": "BIOTEC-4-2014" +},{ + "projectID": 955646, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 892834, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 878259, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 896512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 838373, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792197, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101024490, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 858144, + "title": "Support to the Romanian Presidency Conference on the European Strategic Technology Plan (SET-Plan) 2019 with a focus on regional dimension", + "topic": "IBA-ENERGY-SETPLAN-2019" +},{ + "projectID": 750129, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 889508, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 658035, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 836122, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774253, + "title": "Multi-use of the oceans marine space, offshore and near-shore: Enabling technologies", + "topic": "BG-04-2017" +},{ + "projectID": 730004, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 706376, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 676480, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 718299, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 679103, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 675080, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 101008297, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 796025, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 798235, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657374, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 897535, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 800204, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 661408, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 101019911, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 690952, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 714166, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 806083, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 893895, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 774378, + "title": "Supporting international cooperation activities on agriculture soil contribution to climate change mitigation and adaptation", + "topic": "SFS-50-2017" +},{ + "projectID": 844055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 728730, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 691135, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 837096, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 654492, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101026353, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101026119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101006255, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 785317, + "title": "Intermediate Compressor Case Duct Aerodynamics", + "topic": "JTI-CS2-2017-CFP06-ENG-03-19" +},{ + "projectID": 865181, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 869237, + "title": "ERA-NET Cofund action on biodiversity and climate change: Impacts, feedbacks, and nature-based solutions for climate change adaptation and mitigation", + "topic": "LC-CLA-09-2019" +},{ + "projectID": 657998, + "title": "The human factor in the energy system", + "topic": "LCE-20-2014" +},{ + "projectID": 888404, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 895735, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 845426, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101028243, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 746638, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 839168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 677367, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 819139, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 777358, + "title": "IPCC secretariat", + "topic": "IBA-SC5-IPCC-2017" +},{ + "projectID": 101006576, + "title": "Cities as climate-resilient, connected multimodal nodes for smart and clean mobility: new approaches towards demonstrating and testing innovative solutions", + "topic": "LC-MG-1-12-2020" +},{ + "projectID": 724097, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 947719, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 771497, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101033084, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101027966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 845014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661163, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101036560, + "title": "Climate-resilient Innovation Packages for EU regions", + "topic": "LC-GD-1-3-2020" +},{ + "projectID": 659901, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 883728, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 737884, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 659529, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 794766, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 730283, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 840825, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 895983, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 705408, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885026, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 683163, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 680556, + "title": "Buildings design for new highly energy performing buildings", + "topic": "EE-02-2015" +},{ + "projectID": 740390, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 660172, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747331, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 771056, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 697910, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 659401, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 785131, + "title": "Increasing capacities for actual implementation of energy efficiency measures in industry and services", + "topic": "EE-15-2017" +},{ + "projectID": 655100, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749851, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 789748, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 955650, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 649266, + "title": "Energy 75 per cent reimbursement", + "topic": "Energy75" +},{ + "projectID": 893789, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747809, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 834363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 867466, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 888528, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 705895, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023109, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101025100, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 868242, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 771012, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 794119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841902, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 746191, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 700699, + "title": "Disaster Resilience & Climate Change topic 1: Science and innovation for adaptation to climate change: from assessing costs, risks and opportunities to demonstration of options and practices", + "topic": "DRS-09-2015" +},{ + "projectID": 875154, + "title": "Aviation operations impact on climate change (InCo flagship)", + "topic": "LC-MG-1-6-2019" +},{ + "projectID": 654927, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 782882, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 747405, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 766617, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 873055, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891538, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 834775, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 838431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 809195, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 884364, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 834330, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 661674, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 836966, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 638467, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101002085, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 794802, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 696174, + "title": "Technology for district heating and cooling", + "topic": "EE-13-2015" +},{ + "projectID": 823987, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 856282, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 675120, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101003383, + "title": "Widening Fellowships", + "topic": "WF-02-2019" +},{ + "projectID": 846061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 896888, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 823901, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 717797, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 793212, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101003296, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 840799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730243, + "title": "New governance, business, financing models and economic impact assessment tools for sustainable cities with nature-based solutions (urban re-naturing)", + "topic": "SCC-03-2016" +},{ + "projectID": 846824, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705067, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 678148, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101025929, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 704633, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101023502, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 803302, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 839635, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101017984, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 821282, + "title": "Resilience and sustainable reconstruction of historic areas to cope with climate change and hazard events", + "topic": "LC-CLA-04-2018" +},{ + "projectID": 101036009, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 798866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 655676, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 674379, + "title": "Critical infrastructure protection topic 7: SME instrument topic: “Protection of Urban soft targets and urban critical infrastructures”", + "topic": "DRS-17-2014-1" +},{ + "projectID": 660187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 714842, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 882893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 747400, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 880965, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 821016, + "title": "Strengthening international cooperation on sustainable urbanisation: nature-based solutions for restoration and rehabilitation of urban ecosystems", + "topic": "SC5-13-2018-2019" +},{ + "projectID": 101004188, + "title": "Big data technologies and Artificial Intelligence for Copernicus", + "topic": "DT-SPACE-25-EO-2020" +},{ + "projectID": 695944, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 654189, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 726612, + "title": "Food", + "topic": "Food" +},{ + "projectID": 819192, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 744307, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 707187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101038057, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 643084, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 837990, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 706616, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785155, + "title": "Construction skills", + "topic": "EE-14-2016-2017" +},{ + "projectID": 634699, + "title": "Innovative solutions for sustainable novel food processing", + "topic": "SFS-17-2014" +},{ + "projectID": 793529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 892383, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 801809, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 678145, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 750937, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 752453, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 673583, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2014-1" +},{ + "projectID": 655560, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 747805, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893097, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 767272, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 840926, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 744098, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 101026010, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 895799, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 892213, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891418, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 868553, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 774244, + "title": "Organic breeding – Increasing the competitiveness of the organic breeding and farming sectors", + "topic": "SFS-07-2016-2017" +},{ + "projectID": 861119, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 700867, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 101026846, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101024772, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 839311, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 705633, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661149, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 875503, + "title": "Aviation operations impact on climate change (InCo flagship)", + "topic": "LC-MG-1-6-2019" +},{ + "projectID": 720732, + "title": "Communication and awareness", + "topic": "BBI.S2-2015" +},{ + "projectID": 655119, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101028035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 741120, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 101019324, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101018915, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 817104, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 659449, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 648609, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101028622, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 764011, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 706351, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 843094, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 783848, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 884539, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 727578, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 730272, + "title": "Climate services market research", + "topic": "SC5-03-2016" +},{ + "projectID": 898363, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656338, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 867843, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 870883, + "title": "Trust in governance", + "topic": "GOVERNANCE-01-2019" +},{ + "projectID": 838667, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 891807, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 785213, + "title": "SC2-Presidency Event for Food 2030", + "topic": "SC2-Presidency-2017" +},{ + "projectID": 101028577, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 787264, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 727459, + "title": "Challenges for disease management: Perennial crops in the tropics and sub-tropics", + "topic": "SFS-11-2016" +},{ + "projectID": 101035804, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 785047, + "title": "Increasing capacities for actual implementation of energy efficiency measures in industry and services", + "topic": "EE-15-2017" +},{ + "projectID": 101030511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 706428, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 687302, + "title": "Scientific exploitation of astrophysics, comets, and planetary data", + "topic": "COMPET-05-2015" +},{ + "projectID": 101024218, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 891338, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 817412, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 700174, + "title": "Disaster Resilience & Climate Change topic 1: Science and innovation for adaptation to climate change: from assessing costs, risks and opportunities to demonstration of options and practices", + "topic": "DRS-09-2015" +},{ + "projectID": 896637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 862357, + "title": "Climate-smart and resilient farming", + "topic": "LC-SFS-19-2018-2019" +},{ + "projectID": 703991, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 956107, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 751527, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 647423, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101000785, + "title": "Defossilising agriculture – solutions and pathways for fossil-energy-free farming", + "topic": "LC-FNR-06-2020" +},{ + "projectID": 658882, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 861974, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 101032024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 805754, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 884650, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 101030591, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101022251, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 777742, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 659643, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 656632, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101031324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 724101, + "title": "Facilitating public procurement of innovative sustainable transport and mobility solutions in urban areas", + "topic": "MG-4.4-2016" +},{ + "projectID": 703625, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101000427, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 703251, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 813883, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 872969, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 795906, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 657627, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 724052, + "title": "Support to confirmed Presidency event (conference) in Slovakia", + "topic": "SC5-24-2016" +},{ + "projectID": 743278, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 838024, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 862900, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 691998, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 870337, + "title": "Copernicus evolution – Research activities in support of cross-cutting applications between Copernicus services", + "topic": "LC-SPACE-04-EO-2019" +},{ + "projectID": 654942, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 653493, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 678812, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101003815, + "title": "Scientific support to designing mitigation pathways and policies", + "topic": "LC-CLA-10-2020" +},{ + "projectID": 886662, + "title": "Demonstrate bio-based pesticides and/or biostimulant agents for sustainable increase in agricultural productivity", + "topic": "BBI-2019-SO3-D4" +},{ + "projectID": 708530, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 682760, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 679812, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101036030, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 679789, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 658475, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101020082, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 101030015, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 894645, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891477, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 865564, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 839806, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 870146, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 776019, + "title": "EO Big Data Shift", + "topic": "EO-2-2017" +},{ + "projectID": 692520, + "title": "Enhancing and focusing research and innovation cooperation with the Union’s key international partner countries - proposals targeting Australia, USA, Brazil, South Africa, Ukraine", + "topic": "INT-01-2015" +},{ + "projectID": 752135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 868105, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101037084, + "title": "Climate-resilient Innovation Packages for EU regions", + "topic": "LC-GD-1-3-2020" +},{ + "projectID": 889200, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 101025600, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789231, + "title": "Support to the initiative on sustainable energy in the defence and security sector", + "topic": "IBA-SC3-SUSTAINABLE-ENERGY-2017" +},{ + "projectID": 895613, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 739741, + "title": "European SME innovation Associate - pilot", + "topic": "INNOSUP-02-2016" +},{ + "projectID": 761857, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 871704, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 655761, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 864724, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 850853, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 897656, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 897421, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 738483, + "title": "Engaging SMEs in space research and development", + "topic": "SMEInst-04-2016-2017" +},{ + "projectID": 645725, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 882727, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 659969, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 691555, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 847121, + "title": "Business case for industrial waste heat/cold recovery", + "topic": "LC-SC3-EE-6-2018-2019-2020" +},{ + "projectID": 101035819, + "title": "Support for the Research and Innovation Dimension of European Universities (Part II)", + "topic": "IBA-SwafS-Support-2-2020" +},{ + "projectID": 758014, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 655073, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 728651, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 892511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 814357, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 730258, + "title": "A 1.5 million year look into the past for improving climate predictions", + "topic": "SC5-05-2016" +},{ + "projectID": 812880, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 656625, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101032823, + "title": "Mitigating household energy poverty", + "topic": "LC-SC3-EC-2-2018-2019-2020" +},{ + "projectID": 773315, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101004292, + "title": "EGNSS applications fostering green, safe and smart mobility", + "topic": "LC-SPACE-EGNSS-1-2019-2020" +},{ + "projectID": 660593, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 891144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101030314, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 656300, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 701914, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 793965, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 768994, + "title": "The Port of the future", + "topic": "MG-7-3-2017" +},{ + "projectID": 705360, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101037428, + "title": "Accelerating the green transition and energy access Partnership with Africa", + "topic": "LC-GD-2-3-2020" +},{ + "projectID": 101033625, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 875289, + "title": "High-level conference on R&I foundations and other venture philanthropists", + "topic": "H2020-ARF-2018-2020-12" +},{ + "projectID": 802685, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 820075, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 951963, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101027286, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 682758, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101023960, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 948674, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 678140, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 791812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 898058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 806756, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 705639, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845687, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730609, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 101022401, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 696081, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2015" +},{ + "projectID": 101025534, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 749949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 891545, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 899209, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 793911, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 706093, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895233, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 659549, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 740179, + "title": "Accelerating the uptake of nanotechnologies advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "SMEInst-02-2016-2017" +},{ + "projectID": 887992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691664, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2015" +},{ + "projectID": 101000402, + "title": "Closing nutrient cycles", + "topic": "CE-RUR-08-2018-2019-2020" +},{ + "projectID": 101026422, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 808145, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 838077, + "title": "Conversion of captured CO2", + "topic": "CE-SC3-NZE-2-2018" +},{ + "projectID": 101006275, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 782767, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 796752, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 824269, + "title": "Coordinating national efforts in modernizing transport infrastructure and provide innovative mobility services", + "topic": "MG-2-4-2018" +},{ + "projectID": 651542, + "title": "Small business innovation research for Transport", + "topic": "IT-1-2014-1" +},{ + "projectID": 894215, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 829774, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 833404, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 690133, + "title": "Integrating North African, Middle East and Balkan Earth Observation capacities in GEOSS", + "topic": "SC5-18b-2015" +},{ + "projectID": 685761, + "title": "Bringing EO applications to the market", + "topic": "EO-1-2015" +},{ + "projectID": 708207, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 719958, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 841910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 637643, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 896866, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 759563, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101022317, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 101032087, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 964251, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 644268, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 844628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 742909, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 864888, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 700796, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 661063, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 707491, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 882733, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 727934, + "title": "Testing and breeding for sustainability and resilience in crops", + "topic": "SFS-03-2016" +},{ + "projectID": 743569, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 655239, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 886525, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101006751, + "title": "Cyclic testing of renewable hydrogen storage in a small salt cavern", + "topic": "FCH-02-7-2020" +},{ + "projectID": 776608, + "title": "ERA-NET on Climate Services Roadmap: Cross-sector impact assessments (evaluation, comparison and integration)", + "topic": "SC5-30-2017" +},{ + "projectID": 678889, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 948964, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 639744, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 810176, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 843011, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 652615, + "title": "Sustainable and resilient agriculture for food and non-food systems", + "topic": "ISIB-12a-2014" +},{ + "projectID": 895147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 869296, + "title": "Inter-relations between climate change, biodiversity and ecosystem services", + "topic": "LC-CLA-06-2019" +},{ + "projectID": 652612, + "title": "Coordination action in support of the implementation by participating States of a Joint Programming Initiative on Agriculture, Food Security and Climate Change", + "topic": "ISIB-11-2014" +},{ + "projectID": 656967, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 763643, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 701531, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 713805, + "title": "peer learning of innovation agencies", + "topic": "INNOSUP-5-2014" +},{ + "projectID": 733958, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 849841, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 722968, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 804150, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 655497, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 811514, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 835275, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 724275, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 101024579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 703880, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 819566, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 750795, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 101036041, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 872931, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 889261, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 690660, + "title": "Smart governance, network resilience and streamlined delivery of infrastructure innovation", + "topic": "MG-8.4a-2015" +},{ + "projectID": 727213, + "title": "Breeding livestock for resilience and efficiency", + "topic": "SFS-15-2016-2017" +},{ + "projectID": 706712, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 836543, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 640458, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 684102, + "title": "Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials", + "topic": "SC5-20-2015-1" +},{ + "projectID": 802281, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 101030549, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 730381, + "title": "Exploiting the added value of climate services", + "topic": "SC5-01-2016-2017" +},{ + "projectID": 769967, + "title": "Potential of the Physical Internet", + "topic": "MG-5-4-2017" +},{ + "projectID": 646857, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 701785, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 774219, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "SMEInst-08-2016-2017" +},{ + "projectID": 677407, + "title": "Assessing soil-improving cropping systems", + "topic": "SFS-02b-2015" +},{ + "projectID": 659315, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 794698, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 656810, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 787574, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 894941, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 637462, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 101000716, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 101033168, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 642453, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 730970, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 702964, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 655331, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 838686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 806502, + "title": "Boosting the potential of small businesses in the areas of climate action, environment, resource efficiency and raw materials", + "topic": "SMEInst-11-2016-2017" +},{ + "projectID": 646517, + "title": "Supporting Joint Actions on demonstration and validation of innovative energy solutions", + "topic": "LCE-18-2014" +},{ + "projectID": 747238, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 846134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656272, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 782809, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 722493, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 890702, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 718823, + "title": "Accelerating the uptake of nanotechnologies, advanced materials or advanced manufacturing and processing technologies by SMEs", + "topic": "NMP-25-2015" +},{ + "projectID": 883621, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 717956, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2015-1" +},{ + "projectID": 633929, + "title": "Promoting innovation in the Inland Waterways Transport (IWT) sector", + "topic": "MG-4.4-2014" +},{ + "projectID": 895209, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101026907, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 683043, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 840205, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101032484, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 747646, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 893060, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 730052, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 817970, + "title": "Innovations in plant variety testing", + "topic": "SFS-29-2018" +},{ + "projectID": 964430, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 701350, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 895637, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 713750, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 640769, + "title": "Enabling decarbonisation of the fossil fuel-based power sector and energy intensive industry through CCS", + "topic": "LCE-15-2014" +},{ + "projectID": 730222, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 786612, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 752250, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 823965, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 956355, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 949332, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 796539, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 836451, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 837992, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 717607, + "title": "Resource-efficient eco-innovative food production and processing", + "topic": "SFS-08-2015-1" +},{ + "projectID": 791878, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 952314, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101000570, + "title": "New and emerging risks to plant health", + "topic": "SFS-05-2018-2019-2020" +},{ + "projectID": 891686, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 656731, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 660020, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 955458, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 751131, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 734560, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 896119, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 771678, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 841073, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 796877, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 840661, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101002973, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 892077, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 798867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 799778, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 852730, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 101031512, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 840207, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 764816, + "title": "CCS in industry, including Bio-CCS", + "topic": "LCE-29-2017" +},{ + "projectID": 715513, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 891576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660337, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 843798, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 678779, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 746334, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 709175, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 671952, + "title": "Supporting SMEs efforts for the development - deployment and market replication of innovative solutions for blue growth", + "topic": "BG-12-2014-1" +},{ + "projectID": 894117, + "title": "Mainstreaming energy efficiency finance", + "topic": "LC-SC3-EE-10-2018-2019-2020" +},{ + "projectID": 784689, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 676754, + "title": "Improved forest management models", + "topic": "ISIB-04b-2015" +},{ + "projectID": 706318, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 658358, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101007135, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 810812, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 897783, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 695955, + "title": "Enhancing the capacity of public authorities to plan and implement sustainable energy policies and measures", + "topic": "EE-07-2015" +},{ + "projectID": 672626, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 705427, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 679873, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 835601, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 822654, + "title": "Trends and forward-looking scenarios in global governance", + "topic": "GOVERNANCE-06-2018" +},{ + "projectID": 891347, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 749051, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 693609, + "title": "Europe's contribution to a value-based global order and its contestants", + "topic": "INT-03-2015" +},{ + "projectID": 874469, + "title": "VLD.01 W2 GBAS/SBAS precision approaches including variable approach paths", + "topic": "SESAR-IR-VLD-WAVE2-14-2019" +},{ + "projectID": 845146, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 823967, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 840163, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 657607, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 840047, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 811148, + "title": "Contribution to the World Energy Outlook of the International Energy Agency", + "topic": "IBA-SC3-IEA-2017" +},{ + "projectID": 101029019, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 788752, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 101030319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 814066, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 700385, + "title": "Ethical/Societal Dimension topic 3: Impact of climate change in third countries on Europe's security", + "topic": "DRS-22-2015" +},{ + "projectID": 869383, + "title": "The changing cryosphere: uncertainties, risks and opportunities", + "topic": "LC-CLA-07-2019" +},{ + "projectID": 781779, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 708119, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892089, + "title": "Supporting public authorities to implement the Energy Union", + "topic": "LC-SC3-EE-16-2018-2019-2020" +},{ + "projectID": 835939, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 701329, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 826469, + "title": "Presidency event (conference): 'Sustainable development at the Black Sea' – Romania, first half of 2019", + "topic": "IBA-SC5-PRESIDENCY-RO-2018" +},{ + "projectID": 807831, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 101026923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 847014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 883669, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 748135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 888386, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 770765, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 749867, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 648420, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 691149, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 653569, + "title": "Crisis management topic 7: Crises and disaster resilience – operationalizing resilience concepts", + "topic": "DRS-07-2014" +},{ + "projectID": 637483, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 663057, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 727582, + "title": "Support to the energy stakeholders to contribute to the SET-Plan", + "topic": "LCE-36-2016-2017" +},{ + "projectID": 894644, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 746748, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 673059, + "title": "Stimulating the innovation potential of SMEs for a low carbon energy system", + "topic": "SIE-01-2014-1" +},{ + "projectID": 731129, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 679303, + "title": "Strategies for crop productivity, stability and quality", + "topic": "SFS-05-2015" +},{ + "projectID": 788553, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 747718, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 833522, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 704895, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785332, + "title": "Integrated electronics for actuator data and power management for Morphing Leading Edge activities", + "topic": "JTI-CS2-2017-CFP06-AIR-02-41" +},{ + "projectID": 774465, + "title": "Stimulating the innovation potential of SMEs for sustainable and competitive agriculture, forestry, agri-food and bio-based sectors", + "topic": "SMEInst-07-2016-2017" +},{ + "projectID": 818252, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 824489, + "title": "Supporting the development of territorial Responsible Research and Innovation", + "topic": "SwafS-14-2018-2019-2020" +},{ + "projectID": 645651, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 821880, + "title": "Copernicus evolution – Mission exploitation concepts", + "topic": "LC-SPACE-02-EO-2018" +},{ + "projectID": 101025998, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797823, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 749699, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 786427, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 703119, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 659359, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 752299, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 897901, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 792628, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 891402, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639304, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 704280, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 692413, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 865403, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 750156, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 952051, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 891756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 795179, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 708585, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 841283, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 727217, + "title": "Teaming up for good: Exploiting the benefits of species diversity in cropping systems", + "topic": "SFS-02-2016" +},{ + "projectID": 638665, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 951513, + "title": "ERC Synergy Grant", + "topic": "ERC-2020-SyG" +},{ + "projectID": 844319, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 964764, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101021600, + "title": "Strengthening international policy dialogue to address global challenges: the contribution of transport research & innovation", + "topic": "IBA-SC4-Dialogue-2020" +},{ + "projectID": 655993, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 773153, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101003966, + "title": "Enhancing the Belmont Forum Collaborative Research Action on Climate, Environment and Health", + "topic": "LC-CLA-22-2020" +},{ + "projectID": 704332, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 771369, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 888339, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101023241, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 709372, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 729834, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 101019424, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 653241, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 736164, + "title": "Stimulating the innovation potential of SMEs for a low carbon and efficient energy system", + "topic": "SMEInst-09-2016-2017" +},{ + "projectID": 765585, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 748581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 832464, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679796, + "title": "Strategies for crop productivity, stability and quality", + "topic": "SFS-05-2015" +},{ + "projectID": 947757, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101027058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 715146, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 844756, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101025786, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 797460, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 660814, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 703045, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785058, + "title": "Making the energy efficiency market investible", + "topic": "EE-24-2016-2017" +},{ + "projectID": 705113, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 785045, + "title": "Project Development Assistance", + "topic": "EE-22-2016-2017" +},{ + "projectID": 101024225, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 655487, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 769003, + "title": "Support to confirmed Presidency events (conferences) – Malta, United Kingdom, Estonia", + "topic": "SC5-23-2016-2017" +},{ + "projectID": 660841, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 885552, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 863056, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 101003083, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 895803, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 887457, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 748412, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 746446, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 890630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 691060, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 873723, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 797781, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 707593, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 892451, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101003026, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 661211, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 895455, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 891671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 660363, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 958701, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 808366, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 838529, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 792640, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 820575, + "title": "Addressing knowledge gaps in climate science, in support of IPCC reports", + "topic": "LC-CLA-08-2018" +},{ + "projectID": 826356, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 653605, + "title": "Optimised and systematic energy management in electric vehicles", + "topic": "GV-2-2014" +},{ + "projectID": 703733, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101003880, + "title": "Scientific support to designing mitigation pathways and policies", + "topic": "LC-CLA-10-2020" +},{ + "projectID": 658025, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101029457, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 863723, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 948846, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101030973, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 841291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 832543, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 770504, + "title": "Cultural heritage of European coastal and maritime regions", + "topic": "CULT-COOP-07-2017" +},{ + "projectID": 804162, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 705615, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 885891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 655815, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101008114, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 838841, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 659246, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 657263, + "title": "Supporting coordination of national R&D activities", + "topic": "LCE-19-2014" +},{ + "projectID": 754104, + "title": "Engaging and activating public authorities", + "topic": "EE-09-2016-2017" +},{ + "projectID": 641739, + "title": "Water cycle under future climate", + "topic": "WATER-2a-2014" +},{ + "projectID": 867564, + "title": "Strengthening international cooperation on sustainable urbanisation: nature-based solutions for restoration and rehabilitation of urban ecosystems", + "topic": "SC5-13-2018-2019" +},{ + "projectID": 101027067, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 649647, + "title": "Consumer engagement for sustainable energy", + "topic": "EE-10-2014" +},{ + "projectID": 759639, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 827343, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 891642, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 899282, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 703542, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 101018935, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 633464, + "title": "Improved forest data", + "topic": "ISIB-04a-2014" +},{ + "projectID": 872690, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 840240, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 713673, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 705464, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 844526, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 774784, + "title": "Small business innovation research for Transport and Smart Cities Mobility", + "topic": "SMEInst-10-2016-2017" +},{ + "projectID": 750252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 892528, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 703015, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 845061, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 715744, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 658303, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 722615, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 663830, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 735804, + "title": "New business models for inclusive, innovative and reflective societies", + "topic": "SMEInst-12-2016-2017" +},{ + "projectID": 658705, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 692335, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 712268, + "title": "Open Disruptive Innovation Scheme (implemented through the SME instrument)", + "topic": "ICT-37-2015-1" +},{ + "projectID": 772255, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 894784, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 757848, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 759467, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 665385, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 898972, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 885672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101021893, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 789028, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 765579, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 654296, + "title": "Policy measures for research infrastructures", + "topic": "INFRASUPP-5-2014" +},{ + "projectID": 895133, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 893982, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 665972, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2014" +},{ + "projectID": 795942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 771589, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 694405, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 899981, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 854759, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 649043, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 948786, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 886853, + "title": "SME instrument", + "topic": "EIC-SMEInst-2018-2020" +},{ + "projectID": 655621, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 898507, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 773067, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 633260, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 956170, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 665136, + "title": "Coordination and Support Activities", + "topic": "FETOPEN-2-2014" +},{ + "projectID": 864017, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 101001902, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 889949, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 639508, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 679158, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 899930, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 713366, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 873071, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 875911, + "title": "European Union Contest for Young Scientists (EUCYS) 2019", + "topic": "IBA-SWFS-EUCYS-2019" +},{ + "projectID": 101006452, + "title": "Research innovation needs & skills training in PhD programmes", + "topic": "SwafS-08-2019-2020" +},{ + "projectID": 710577, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2015" +},{ + "projectID": 893204, + "title": "Increased Levels of Automation for the ATM Network", + "topic": "SESAR-ER4-15-2019" +},{ + "projectID": 890376, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724725, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 951822, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101024431, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 846522, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 818730, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 764650, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101002551, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 883724, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 789831, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 677793, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101008228, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 945371, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 710240, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2015" +},{ + "projectID": 682080, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 897324, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 840797, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 890812, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 665100, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2014" +},{ + "projectID": 867450, + "title": "Widening Fellowships", + "topic": "WF-01-2018" +},{ + "projectID": 734557, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 772099, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 101008280, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 872855, + "title": "Taking stock and re-examining the role of science communication", + "topic": "SwafS-19-2018-2019-2020" +},{ + "projectID": 824581, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 723085, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 705295, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 726141, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 787185, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 948139, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 812806, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 844252, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 947657, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 714034, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 691011, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 730891, + "title": "Open Disruptive Innovation Scheme", + "topic": "SMEInst-01-2016-2017" +},{ + "projectID": 101034413, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2020" +},{ + "projectID": 687676, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 945045, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 945416, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2019" +},{ + "projectID": 654809, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 709515, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2015" +},{ + "projectID": 641984, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 847648, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 842487, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 847471, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2018" +},{ + "projectID": 841228, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 754303, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 722443, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 653285, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 710708, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2015" +},{ + "projectID": 841928, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 730009, + "title": "SCIENTIX III Building and maintaining a Science Education Community in Europe by promoting Inquiry-Based Science Education and other initiatives at national level", + "topic": "IBA-SWFS-SCIENTIX-2016" +},{ + "projectID": 676207, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2015-EJD" +},{ + "projectID": 763594, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 665566, + "title": "Innovative approach to communication encouraging girls to study science", + "topic": "GERI-1-2014" +},{ + "projectID": 716669, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 713729, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2015-DP" +},{ + "projectID": 708045, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 732679, + "title": "Large Scale Pilots", + "topic": "IoT-01-2016" +},{ + "projectID": 796135, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 841894, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 847926, + "title": "Mental health in the workplace", + "topic": "SC1-BHC-22-2019" +},{ + "projectID": 101022473, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 721403, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 703753, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 965367, + "title": "Micro- and nano-plastics in our environment: Understanding exposures and impacts on human health", + "topic": "SC1-BHC-36-2020" +},{ + "projectID": 856533, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 101033630, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 949438, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 958170, + "title": "Novel high performance materials and components (RIA)", + "topic": "LC-SPIRE-08-2020" +},{ + "projectID": 955529, + "title": "Towards highly energy efficient and decarbonised buildings", + "topic": "LC-SC3-B4E-1-2020" +},{ + "projectID": 771649, + "title": "Validation of diagnostic tools for animal and plant health", + "topic": "SFS-13-2017" +},{ + "projectID": 732695, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 964735, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 676247, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 746774, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 640800, + "title": "Quantum simulation", + "topic": "FETPROACT-3-2014" +},{ + "projectID": 101006941, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 665637, + "title": "Support to research organisations to implement gender equality plans", + "topic": "GERI-4-2014" +},{ + "projectID": 893614, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 834615, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 871158, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 971209, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 734719, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 773392, + "title": "Support to the energy stakeholders to contribute to the SET-Plan", + "topic": "LCE-36-2016-2017" +},{ + "projectID": 814496, + "title": "Innovative and affordable solutions for the preventive conservation of cultural heritage (IA)", + "topic": "NMBP-33-2018" +},{ + "projectID": 654360, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 692470, + "title": "Smart Health", + "topic": "ECSEL-04-2015" +},{ + "projectID": 675063, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 813091, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 773567, + "title": "Innovations in plant protection", + "topic": "SFS-17-2017" +},{ + "projectID": 862419, + "title": "Safe by design, from science to regulation: metrics and main sectors (RIA)", + "topic": "NMBP-15-2019" +},{ + "projectID": 780488, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 751175, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 860034, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 653961, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 645595, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 745601, + "title": "Increasing the competitiveness of the EU PV manufacturing industry", + "topic": "LCE-09-2016" +},{ + "projectID": 801378, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 727874, + "title": "Large-scale algae biomass integrated biorefineries", + "topic": "BG-01-2016" +},{ + "projectID": 646031, + "title": "The materials 'common house'", + "topic": "NMP-33-2014" +},{ + "projectID": 703798, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 774331, + "title": "Bio-based products: Mobilisation and mutual learning action plan", + "topic": "BB-05-2017" +},{ + "projectID": 954949, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 893743, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 712965, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 101008724, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 747055, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 886171, + "title": "Sustainable Nano-Fabrication (CSA)", + "topic": "DT-NMBP-12-2019" +},{ + "projectID": 739550, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 766563, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 653933, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-02-2014" +},{ + "projectID": 680448, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 821932, + "title": "Generic space technologies", + "topic": "SPACE-11-TEC-2018" +},{ + "projectID": 680426, + "title": "Energy and resource management systems for improved efficiency in the process industries", + "topic": "SPIRE-06-2015" +},{ + "projectID": 754507, + "title": "Co-funding of regional, national and international programmes", + "topic": "MSCA-COFUND-2016" +},{ + "projectID": 883273, + "title": "Digital security, privacy, data protection and accountability in critical sectors", + "topic": "SU-DS05-2018-2019" +},{ + "projectID": 674907, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 776851, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 899598, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 733001, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 723137, + "title": "Standardised installation packages integrating renewable and energy efficiency solutions for heating, cooling and/or hot water preparation", + "topic": "EE-03-2016" +},{ + "projectID": 653748, + "title": "Ethical/Societal Dimension topic 2: Better understanding the links between culture, risk perception and disaster management", + "topic": "DRS-21-2014" +},{ + "projectID": 730928, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2016" +},{ + "projectID": 101016665, + "title": "Photonics Innovation Hubs", + "topic": "DT-ICT-04-2020" +},{ + "projectID": 825051, + "title": "Photonics based manufacturing, access to photonics, datacom photonics and connected lighting", + "topic": "ICT-04-2018" +},{ + "projectID": 688539, + "title": "Generic micro- and nano-electronic technologies", + "topic": "ICT-25-2015" +},{ + "projectID": 693548, + "title": "Innovation ecosystems of digital cultural assets", + "topic": "REFLECTIVE-6-2015" +},{ + "projectID": 795923, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871161, + "title": "Fast track to the implementation of an ESFRI research infrastructure", + "topic": "INFRADEV-04-2019" +},{ + "projectID": 691249, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 780206, + "title": "Interfaces for accessibility", + "topic": "ICT-23-2017" +},{ + "projectID": 730456, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 101000210, + "title": "Emerging challenges for soil management", + "topic": "SFS-21-2020" +},{ + "projectID": 689660, + "title": "Self management of health and disease and decision support systems based on predictive computer modelling used by the patient him or herself", + "topic": "PHC-28-2015" +},{ + "projectID": 833042, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 101006839, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 820392, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 653982, + "title": "Design studies", + "topic": "INFRADEV-1-2014" +},{ + "projectID": 796291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 720757, + "title": "Practices increasing effectiveness of forest management", + "topic": "BBI.VC2.R5-2015" +},{ + "projectID": 678781, + "title": "Biological contamination of crops and the food chain", + "topic": "SFS-13-2015" +},{ + "projectID": 785072, + "title": "Overcoming market barriers and promoting deep renovation of buildings", + "topic": "EE-11-2016-2017" +},{ + "projectID": 813103, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 687384, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 778168, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 101036170, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 899349, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 643071, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EJD)", + "topic": "MSCA-ITN-2014-EJD" +},{ + "projectID": 643995, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 776348, + "title": "Downstream applications", + "topic": "EO-1-2017" +},{ + "projectID": 101000832, + "title": "Pilot action for the removal of marine plastics and litter", + "topic": "CE-FNR-09-2020" +},{ + "projectID": 731473, + "title": "FET ERANET Cofund in Quantum Technologies", + "topic": "FETPROACT-03-2016" +},{ + "projectID": 720827, + "title": "Advanced Materials for Power Electronics based on wide bandgap semiconductor devices technology", + "topic": "NMBP-02-2016" +},{ + "projectID": 788171, + "title": "Support to research organisations to implement gender equality plans", + "topic": "SwafS-03-2016-2017" +},{ + "projectID": 830929, + "title": "Establishing and operating a pilot for a Cybersecurity Competence Network to develop and implement a common Cybersecurity Research & Innovation Roadmap", + "topic": "SU-ICT-03-2018" +},{ + "projectID": 871793, + "title": "Cloud Computing", + "topic": "ICT-15-2019-2020" +},{ + "projectID": 734815, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 739514, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 794074, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101034849, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 895579, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 739503, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 101037419, + "title": "Preventing and fighting extreme wildfires with the integration and demonstration of innovative means", + "topic": "LC-GD-1-1-2020" +},{ + "projectID": 745874, + "title": "Biomass production on unused land for conversion into added-value products while ‘boosting rural and industrial development’", + "topic": "BBI-2016-D09" +},{ + "projectID": 759959, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 863313, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 792049, + "title": "Advanced bio-based fibres and materials for large-volume applications", + "topic": "BBI.2017.D5" +},{ + "projectID": 952063, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 686031, + "title": "Materials innovations for optimisation of cooling in power plants", + "topic": "NMP-15-2015" +},{ + "projectID": 768824, + "title": "Highly efficient hybrid storage solutions for power and heat in residential buildings and district areas, balancing the supply and demand conditions", + "topic": "EEB-06-2017" +},{ + "projectID": 731103, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 817690, + "title": "Future proofing our plants", + "topic": "LC-SFS-15-2018" +},{ + "projectID": 655515, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 735218, + "title": "Development of processes for direct production of hydrogen from sunlight", + "topic": "FCH-02-3-2016" +},{ + "projectID": 655537, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 700008, + "title": "Improved electrolysis for Distributed Hydrogen production", + "topic": "FCH-02.2-2015" +},{ + "projectID": 101003632, + "title": "Understanding climate-water-energy-food nexus and streamlining water-related policies", + "topic": "LC-CLA-14-2020" +},{ + "projectID": 786727, + "title": "Prevention, detection, response and mitigation of the combination of physical and cyber threats to the critical infrastructure of Europe.", + "topic": "CIP-01-2016-2017" +},{ + "projectID": 831282, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 945887, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 737054, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 101017857, + "title": "Environmental Intelligence", + "topic": "FETPROACT-EIC-08-2020" +},{ + "projectID": 817992, + "title": "Blue Bioeconomy Public-Public Partnership", + "topic": "BG-02-2018" +},{ + "projectID": 713651, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 739964, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 685594, + "title": "Materials for severe operating conditions, including added-value functionalities", + "topic": "NMP-19-2015" +},{ + "projectID": 956387, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 958454, + "title": "Preserving fresh water: recycling industrial waters industry", + "topic": "CE-SPIRE-07-2020" +},{ + "projectID": 680754, + "title": "Manufacturing of custom made parts for personalised products", + "topic": "FoF-10-2015" +},{ + "projectID": 101017385, + "title": "Personalised early risk prediction, prevention and intervention based on Artificial Intelligence and Big Data technologies", + "topic": "SC1-DTH-02-2020" +},{ + "projectID": 771271, + "title": "Research and approaches for emerging diseases and pests in plants and terrestrial livestock", + "topic": "SFS-10-2017" +},{ + "projectID": 957337, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 660532, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 964591, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101007976, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 956325, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101016520, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 691875, + "title": "Market uptake of existing and emerging sustainable bioenergy", + "topic": "LCE-14-2015" +},{ + "projectID": 873132, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 814236, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 811171, + "title": "Horizontal support to joint programming (ERA-LEARN 2020)", + "topic": "IBA-SC6-ERALEARN-2017" +},{ + "projectID": 696076, + "title": "Removing market barriers to the uptake of efficient heating and cooling solutions", + "topic": "EE-14-2015" +},{ + "projectID": 800926, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 681285, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 660228, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 723583, + "title": "New technologies and strategies for the development of pre-fabricated elements through the reuse and recycling of construction materials and structures", + "topic": "EEB-04-2016" +},{ + "projectID": 722176, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 766466, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 834756, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 730879, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 775983, + "title": "Novel in-situ observation systems", + "topic": "SC5-18-2017" +},{ + "projectID": 807089, + "title": "Regional Aircraft", + "topic": "CS2-GAM-2018-REG" +},{ + "projectID": 842979, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 656093, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 894942, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654310, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 871385, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 642196, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 101006879, + "title": "Digitalisation of the transport system: data sharing", + "topic": "MG-4-7-2020" +},{ + "projectID": 828890, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 692529, + "title": "Cyber-physical Systems", + "topic": "ECSEL-08-2015" +},{ + "projectID": 101034922, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 653874, + "title": "Ethical/Societal Dimension topic 2: Better understanding the links between culture, risk perception and disaster management", + "topic": "DRS-21-2014" +},{ + "projectID": 859853, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 676876, + "title": "Management and sustainable use of genetic resources", + "topic": "SFS-07b-2015" +},{ + "projectID": 646121, + "title": "Widening materials models", + "topic": "NMP-20-2014" +},{ + "projectID": 665403, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-DP)", + "topic": "MSCA-COFUND-2014-DP" +},{ + "projectID": 871277, + "title": "Application driven Photonics components", + "topic": "ICT-05-2019" +},{ + "projectID": 727368, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 779472, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 727321, + "title": "Weeding - strategies, tools and technologies for sustainable weed management", + "topic": "SFS-06-2016" +},{ + "projectID": 101004186, + "title": "Copernicus evolution: Mission exploitation concept for WATER", + "topic": "LC-SPACE-24-EO-2020" +},{ + "projectID": 747493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 879945, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 671881, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 792210, + "title": "Easier to install and more efficient geothermal systems for retrofitting buildings", + "topic": "LCE-17-2017" +},{ + "projectID": 860553, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101003534, + "title": "Climate resilience of European coastal cities and settlements", + "topic": "LC-CLA-13-2020" +},{ + "projectID": 720851, + "title": "Pilot Line Manufacturing of Nanostructured Antimicrobial Surfaces using Advanced Nanosurface Functionalization Technologies", + "topic": "PILOTS-02-2016" +},{ + "projectID": 820213, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 780333, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 101000747, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 641715, + "title": "Stepping up EU research and innovation cooperation in the water area", + "topic": "WATER-3-2014" +},{ + "projectID": 862253, + "title": "Materials for non-battery based energy storage (RIA)", + "topic": "LC-NMBP-29-2019" +},{ + "projectID": 713010, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 649149, + "title": "Europe", + "topic": "Europe" +},{ + "projectID": 747030, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 818242, + "title": "Market Uptake support", + "topic": "LC-SC3-RES-28-2018-2019-2020" +},{ + "projectID": 101036127, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 801126, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 899871, + "title": "Healthcare interventions for the management of the elderly multimorbid patient", + "topic": "SC1-BHC-24-2020" +},{ + "projectID": 860497, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 955413, + "title": "Decarbonising long distance shipping", + "topic": "LC-MG-1-13-2020" +},{ + "projectID": 777561, + "title": "Operational conditions of the signalling and automation systems; signalling system hazard analysis and GNSS SIS characterization along with Formal Method application in railway field", + "topic": "S2R-OC-IP2-01-2017" +},{ + "projectID": 722591, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 734164, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 778360, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 792058, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 785410, + "title": "Development of systems for automated testing in the aircraft interior", + "topic": "JTI-CS2-2017-CFP06-LPA-02-21" +},{ + "projectID": 875024, + "title": "New Anion Exchange Membrane Electrolysers", + "topic": "FCH-02-4-2019" +},{ + "projectID": 765426, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 754467, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 826244, + "title": "New biotechnologies for environmental remediation (RIA)", + "topic": "CE-BIOTEC-04-2018" +},{ + "projectID": 637095, + "title": "Symbiotic human-robot collaboration for safe and dynamic multimodal manufacturing systems", + "topic": "FoF-06-2014" +},{ + "projectID": 824314, + "title": "Virtual product development and production of all types of electrified vehicles and components", + "topic": "LC-GV-02-2018" +},{ + "projectID": 689427, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 863227, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 717064, + "title": "System development for optical fiber sensing technology measurements for industrial aeronautical contexts: composite manufacturing plants, structural test platforms and airborne conditions", + "topic": "JTI-CS2-2015-CFP02-AIR-02-12" +},{ + "projectID": 818290, + "title": "Microbiome applications for sustainable food systems", + "topic": "LC-SFS-03-2018" +},{ + "projectID": 101025891, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 814177, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 727929, + "title": "Solutions to multiple and combined stresses in crop production", + "topic": "SFS-01-2016" +},{ + "projectID": 734834, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 644076, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 757625, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 654008, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 769066, + "title": "Resilience to extreme (natural and man-made) events", + "topic": "MG-7-1-2017" +},{ + "projectID": 101034937, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 843014, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 799952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 958410, + "title": "Energy-efficient manufacturing system management (IA)", + "topic": "DT-FOF-09-2020" +},{ + "projectID": 872331, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 732541, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 730965, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 101003799, + "title": "Innovative nature-based solutions for carbon neutral cities and improved air quality", + "topic": "LC-CLA-11-2020" +},{ + "projectID": 824123, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 692014, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 765297, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 764047, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 764025, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 675680, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 779664, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 818169, + "title": "Demonstrate solutions that significantly reduce the cost of renewable power generation", + "topic": "LC-SC3-RES-13-2018" +},{ + "projectID": 777119, + "title": "In-silico trials for developing and assessing biomedical products", + "topic": "SC1-PM-16-2017" +},{ + "projectID": 798576, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 822336, + "title": "Curation of digital assets and advanced digitisation", + "topic": "DT-TRANSFORMATIONS-12-2018-2020" +},{ + "projectID": 958352, + "title": "Develop, implement and assess a circular economy oriented product information management system for complex products from cradle to cradle", + "topic": "CE-SC5-31-2020" +},{ + "projectID": 778305, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 723748, + "title": "Business models for flexible and delocalised approaches for intensified processing", + "topic": "SPIRE-06-2016" +},{ + "projectID": 837752, + "title": "Social Sciences and Humanities (SSH) aspects of the Clean-Energy Transition", + "topic": "LC-SC3-CC-1-2018-2019-2020" +},{ + "projectID": 821911, + "title": "Space hubs for Copernicus", + "topic": "DT-SPACE-07-BIZ-2018" +},{ + "projectID": 798952, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 731015, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 831270, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 862085, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 738039, + "title": "Development of System Components for automated Cabin and Cargo Installation", + "topic": "JTI-CS2-2016-CFP03-LPA-02-12" +},{ + "projectID": 101034794, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 642023, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 769643, + "title": "Personalised coaching for well-being and care of people as they age", + "topic": "SC1-PM-15-2017" +},{ + "projectID": 813170, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 739568, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 870811, + "title": "Collaborative approaches to cultural heritage for social cohesion", + "topic": "DT-TRANSFORMATIONS-11-2019" +},{ + "projectID": 101004627, + "title": "Innovative approaches to urban and regional development through cultural tourism", + "topic": "TRANSFORMATIONS-04-2019-2020" +},{ + "projectID": 899315, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 795919, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 101036656, + "title": "Innovative land-based and offshore renewable energy technologies and their integration into the energy system", + "topic": "LC-GD-2-1-2020" +},{ + "projectID": 101017501, + "title": "Increasing the service offer of the EOSC Portal", + "topic": "INFRAEOSC-07-2020" +},{ + "projectID": 870349, + "title": "Copernicus evolution – Research activities in support of cross-cutting applications between Copernicus services", + "topic": "LC-SPACE-04-EO-2019" +},{ + "projectID": 893943, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788503, + "title": "A Linked-up Global World of RRI", + "topic": "SwafS-14-2017" +},{ + "projectID": 953167, + "title": "Open Innovation Platform for Materials Modelling (RIA)", + "topic": "DT-NMBP-11-2020" +},{ + "projectID": 688510, + "title": "Photonics KET", + "topic": "ICT-27-2015" +},{ + "projectID": 860239, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 730323, + "title": "Systemic, eco-innovative approaches for the circular economy: large-scale demonstration projects", + "topic": "CIRC-01-2016-2017" +},{ + "projectID": 872417, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 723916, + "title": "New technologies and strategies for the development of pre-fabricated elements through the reuse and recycling of construction materials and structures", + "topic": "EEB-04-2016" +},{ + "projectID": 723131, + "title": "Federated Cloud resource brokerage for mobile cloud services", + "topic": "EUK-03-2016" +},{ + "projectID": 780754, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 772261, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 635149, + "title": "SCIENCE WAF SOCIETY", + "topic": "SCIENCE WAF SOCIETY" +},{ + "projectID": 636380, + "title": "MG-3.1-2014: Technologies for low emission powertrains", + "topic": "MG-3.1-2014" +},{ + "projectID": 882897, + "title": "Technologies for first responders", + "topic": "SU-DRS02-2018-2019-2020" +},{ + "projectID": 780757, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 814945, + "title": "Renewable energy system integrated at the building scale", + "topic": "LC-SC3-RES-4-2018" +},{ + "projectID": 860434, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 633964, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 760431, + "title": "Microbial platforms for CO2-reuse processes in the low-carbon economy", + "topic": "BIOTEC-05-2017" +},{ + "projectID": 821520, + "title": "ConcePTION – Continuum of Evidence from Pregnancy Exposures, Reproductive Toxicology and Breastfeeding to Improve Outcomes Now", + "topic": "IMI2-2017-13-09" +},{ + "projectID": 691042, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 644606, + "title": "Photonics KET", + "topic": "ICT-26-2014" +},{ + "projectID": 691936, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 964588, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 800923, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 727474, + "title": "Digital health literacy", + "topic": "SC1-HCO-12-2016" +},{ + "projectID": 951910, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 643808, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 951768, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 824348, + "title": "Unmanned and autonomous survey activities at sea:", + "topic": "MG-BG-01-2018" +},{ + "projectID": 101016706, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 952095, + "title": "EIC Transition to Innovation Activities", + "topic": "FETPROACT-EIC-06-2019" +},{ + "projectID": 817526, + "title": "New and emerging risks to plant health", + "topic": "SFS-05-2018-2019-2020" +},{ + "projectID": 785932, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 857172, + "title": "Smart and healthy living at home", + "topic": "DT-TDS-01-2019" +},{ + "projectID": 788352, + "title": "Promoting integrity in the use of research results in evidence based policy: a focus on non-medical research", + "topic": "SwafS-21-2017" +},{ + "projectID": 760813, + "title": "Advanced and realistic models and assays for nanomaterial hazard assessment", + "topic": "NMBP-29-2017" +},{ + "projectID": 860337, + "title": "Retrofit Solutions and Next Generation Propulsion for Waterborne Transport", + "topic": "LC-MG-1-8-2019" +},{ + "projectID": 828784, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101023381, + "title": "Create and interlink bio-based education centres to meet industry's needs of skills and competences", + "topic": "BBI-2020-SO4-S3" +},{ + "projectID": 665155, + "title": "Advanced 3D modelling for accessing and understanding European cultural assets", + "topic": "REFLECTIVE-7-2014" +},{ + "projectID": 872391, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 952337, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 887281, + "title": "Demonstrate bio-based pesticides and/or biostimulant agents for sustainable increase in agricultural productivity", + "topic": "BBI-2019-SO3-D4" +},{ + "projectID": 896811, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 657070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 676157, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101000240, + "title": "Towards a productive, healthy, resilient, sustainable and highly-valued Black Sea", + "topic": "BG-11-2020" +},{ + "projectID": 732332, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 707905, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 731558, + "title": "Assurance and Certification for Trustworthy and Secure ICT systems, services and components", + "topic": "DS-01-2016" +},{ + "projectID": 737483, + "title": "ECSEL Key Applications and Essential technologies (RIA)", + "topic": "ECSEL-2016-1" +},{ + "projectID": 743847, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 739562, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 674960, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101033437, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 745530, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 721421, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 814444, + "title": "Osteoarticular tissues regeneration (RIA)", + "topic": "NMBP-22-2018" +},{ + "projectID": 654623, + "title": "Developing next generation technologies for biofuels and sustainable alternative fuels", + "topic": "LCE-11-2015" +},{ + "projectID": 963933, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 813748, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 691980, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 634486, + "title": "Enhancing the industrial exploitation potential of marine-derived enzymes", + "topic": "BG-04-2014" +},{ + "projectID": 952159, + "title": "AI for Health Imaging", + "topic": "DT-TDS-05-2020" +},{ + "projectID": 723248, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 636549, + "title": "Competitiveness of European Aviation through cost efficiency and innovation", + "topic": "MG-1.1-2014" +},{ + "projectID": 837811, + "title": "Identify opportunities to promote careers, education and research activities in the European bio-based industry", + "topic": "BBI.2018.SO4.S3" +},{ + "projectID": 678556, + "title": "ICT-enabled modelling, simulation, analytics and forecasting technologies", + "topic": "FoF-08-2015" +},{ + "projectID": 737972, + "title": "Development of intelligent oil system enablers for large VHBR engine oil lubrication and heat management systems", + "topic": "JTI-CS2-2016-CFP03-ENG-03-12" +},{ + "projectID": 713450, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 838061, + "title": "Conversion of captured CO2", + "topic": "CE-SC3-NZE-2-2018" +},{ + "projectID": 101036588, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +},{ + "projectID": 765266, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 689074, + "title": "System modelling and life-cycle cost optimisation for waterborne assets", + "topic": "MG-4.3-2015" +},{ + "projectID": 732678, + "title": "SSI - Smart System Integration", + "topic": "ICT-03-2016" +},{ + "projectID": 955479, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 696324, + "title": "Coordination action in support of the implementation of the Joint Programming Initiative on 'Healthy and Productive Seas and Oceans'", + "topic": "BG-16-2015" +},{ + "projectID": 101006732, + "title": "Robotics in Application Areas and Coordination & Support", + "topic": "ICT-46-2020" +},{ + "projectID": 101000302, + "title": "Fisheries in the full ecosystem context", + "topic": "BG-10-2020" +},{ + "projectID": 730349, + "title": "Unlocking the potential of urban organic waste", + "topic": "CIRC-05-2016" +},{ + "projectID": 835271, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 785306, + "title": "Fuel System Detail Development, Testing and Manufacturing", + "topic": "JTI-CS2-2017-CFP06-FRC-02-25" +},{ + "projectID": 774499, + "title": "Blue green innovation for clean coasts and seas", + "topic": "BG-07-2017" +},{ + "projectID": 101007084, + "title": "Developing the next generation of renewable energy technologies", + "topic": "LC-SC3-RES-1-2019-2020" +},{ + "projectID": 776528, + "title": "Demonstrating innovative nature-based solutions in cities", + "topic": "SCC-02-2016-2017" +},{ + "projectID": 101000216, + "title": "Husbandry for quality and sustainability", + "topic": "FNR-05-2020" +},{ + "projectID": 652641, + "title": "European polar research cooperation", + "topic": "BG-15-2014" +},{ + "projectID": 690944, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 737801, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 675320, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 743797, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 649307, + "title": "ERA-NET on Uses of the past", + "topic": "REFLECTIVE-1-2014" +},{ + "projectID": 101006543, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 842147, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101003766, + "title": "Coordination of European Polar research", + "topic": "LC-CLA-21-2020" +},{ + "projectID": 883116, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 101016663, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 643310, + "title": "INNOSUP", + "topic": "INNOSUP" +},{ + "projectID": 101037389, + "title": "Closing the industrial carbon cycle to combat climate change - Industrial feasibility of catalytic routes for sustainable alternatives to fossil resources", + "topic": "LC-GD-3-1-2020" +},{ + "projectID": 773383, + "title": "Adaptive tree breeding strategies and tools for forest production systems resilient to climate change and natural disturbances", + "topic": "BB-03-2017" +},{ + "projectID": 732599, + "title": "Gaming and gamification", + "topic": "ICT-24-2016" +},{ + "projectID": 101017733, + "title": "Quantum Flagship - ERA-NET Cofund", + "topic": "FETFLAG-04-2020" +},{ + "projectID": 955612, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 737417, + "title": "ECSEL Key Applications and Essential Technologies (IA)", + "topic": "ECSEL-2016-2" +},{ + "projectID": 101000375, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 899587, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 820283, + "title": "Grounding RRI practices in research and innovation funding and performing organisations", + "topic": "SwafS-05-2018-2019" +},{ + "projectID": 101000825, + "title": "The Future of Seas and Oceans Flagship Initiative", + "topic": "BG-07-2019-2020" +},{ + "projectID": 687500, + "title": "Passive means to reduce the impact of Space Debris", + "topic": "PROTEC-1-2015" +},{ + "projectID": 101023225, + "title": "Extract bioactive compounds from new, under-exploited and/or recalcitrant residual bio-based streams for high-value applications", + "topic": "BBI-2020-SO2-R4" +},{ + "projectID": 101034828, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 760210, + "title": "Fast Track to Innovation Pilot", + "topic": "FTIPilot-01-2016" +},{ + "projectID": 727550, + "title": "International Cooperation with Mexico on geothermal energy", + "topic": "LCE-23-2016" +},{ + "projectID": 814078, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 688945, + "title": "Preparatory Phase of ESFRI projects", + "topic": "INFRADEV-2-2015" +},{ + "projectID": 674830, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 779540, + "title": "Game changer Water Electrolysers", + "topic": "FCH-02-1-2017" +},{ + "projectID": 682157, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 862840, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 705269, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 724139, + "title": "Addressing aviation safety challenges", + "topic": "MG-3.1-2016" +},{ + "projectID": 870390, + "title": "Earth observation technologies", + "topic": "LC-SPACE-14-TEC-2018-2019" +},{ + "projectID": 688320, + "title": "Development of water supply and sanitation technology, systems and tools, and/or methodologies", + "topic": "WATER-5c-2015" +},{ + "projectID": 768884, + "title": "Mapping a path to future supply chains", + "topic": "NMBP-37-2017" +},{ + "projectID": 953270, + "title": "Open Innovation Test Beds for nano-enabled bio-based materials (IA)", + "topic": "DT-NMBP-04-2020" +},{ + "projectID": 799930, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 710566, + "title": "Knowledge Sharing Platform", + "topic": "ISSI-3-2015" +},{ + "projectID": 863220, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 776866, + "title": "Large-scale demonstrators on nature-based solutions for hydro-meteorological risk reduction", + "topic": "SC5-08-2017" +},{ + "projectID": 633306, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 101006443, + "title": "Under water noise mitigation and environmental impact", + "topic": "MG-BG-03-2020" +},{ + "projectID": 842547, + "title": "Support to the realisation of the Implementation Plans of the SET Plan", + "topic": "LC-SC3-JA-2-2018-2019" +},{ + "projectID": 713548, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2015-FP" +},{ + "projectID": 952068, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-EIC-05-2019" +},{ + "projectID": 645757, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 723976, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 690142, + "title": "Ensuring sustainable use of agricultural waste, co-products and by-products", + "topic": "WASTE-7-2015" +},{ + "projectID": 737017, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 730104, + "title": "Maturing satellite communication technologies", + "topic": "COMPET-2-2016" +},{ + "projectID": 101008159, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 740647, + "title": "EU Cooperation and International Dialogues in Cybersecurity and Privacy Research and Innovation", + "topic": "DS-05-2016" +},{ + "projectID": 731610, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 101006416, + "title": "Supporting research organisations to implement gender equality plans", + "topic": "SwafS-09-2018-2019-2020" +},{ + "projectID": 734909, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 693604, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 862695, + "title": "European Joint Programme on agricultural soil management", + "topic": "LC-SFS-20-2019" +},{ + "projectID": 700264, + "title": "Forensics topic 3: Mobile, remotely controlled technologies to examine a crime scene in case of an accident or a terrorist attack involving CBRNE materials", + "topic": "FCT-03-2015" +},{ + "projectID": 634561, + "title": "Traditional resources for agricultural diversity and the food chain", + "topic": "SFS-07a-2014" +},{ + "projectID": 777695, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 859962, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 964396, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 862330, + "title": "Open Innovation Test Beds for nano-enabled surfaces and membranes (IA)", + "topic": "DT-NMBP-03-2019" +},{ + "projectID": 653811, + "title": "Ethical/Societal Dimension Topic 2: Enhancing cooperation between law enforcement agencies and citizens - Community policing", + "topic": "FCT-14-2014" +},{ + "projectID": 952702, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 764479, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 773713, + "title": "Advancing basic biological knowledge and improving management tools for commercially important fish and other seafood species", + "topic": "SFS-21-2016-2017" +},{ + "projectID": 101007623, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 801336, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 700395, + "title": "Disaster Resilience & Climate Change topic 3: Mitigating the impacts of climate change and natural hazards on cultural heritage sites, structures and artefacts", + "topic": "DRS-11-2015" +},{ + "projectID": 694515, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 819167, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 800317, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 955435, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 812661, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 754568, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-04-2016-2017" +},{ + "projectID": 820807, + "title": "Effective Industrial Human-Robot Collaboration (RIA)", + "topic": "DT-FOF-02-2018" +},{ + "projectID": 101016000, + "title": "Medical technologies, Digital tools and Artificial Intelligence (AI) analytics to improve surveillance and care at high Technology Readiness Levels (TRL)", + "topic": "SC1-PHE-CORONAVIRUS-2020-2B" +},{ + "projectID": 971149, + "title": "Fast Track to Innovation (FTI)", + "topic": "EIC-FTI-2018-2020" +},{ + "projectID": 720853, + "title": "Innovative and sustainable materials solutions for the substitution of critical raw materials in the electric power system", + "topic": "NMBP-03-2016" +},{ + "projectID": 746821, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 951787, + "title": "Training and Education on Quantum Technologies", + "topic": "FETFLAG-07-2020" +},{ + "projectID": 821522, + "title": "Mitochondrial Dysfunction in Neurodegeneration", + "topic": "IMI2-2017-13-04" +},{ + "projectID": 101000613, + "title": "Supporting the food safety systems of the future", + "topic": "FNR-08-2020" +},{ + "projectID": 862480, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 731001, + "title": "User-driven e-infrastructure innovation", + "topic": "EINFRA-22-2016" +},{ + "projectID": 862714, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 667079, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 777760, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 730066, + "title": "Downstream applications", + "topic": "EO-1-2016" +},{ + "projectID": 101031043, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 761093, + "title": "Cost-effective materials for “power-to-chemical” technologies", + "topic": "NMBP-19-2017" +},{ + "projectID": 952652, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 965046, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 857125, + "title": "Agricultural digital integration platforms", + "topic": "DT-ICT-08-2019" +},{ + "projectID": 727453, + "title": "Support to the BLUEMED Initiative: Coordination of marine and maritime research and innovation activities in the Mediterranean", + "topic": "BG-13-2016" +},{ + "projectID": 646259, + "title": "Widening materials models", + "topic": "NMP-20-2014" +},{ + "projectID": 659064, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 720719, + "title": "Valorisation of agricultural residues and side streams from the agro-food industry", + "topic": "BBI.VC3.D5-2015" +},{ + "projectID": 879695, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 640967, + "title": "Knowing, doing, being: cognition beyond problem solving", + "topic": "FETPROACT-2-2014" +},{ + "projectID": 670173, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 699824, + "title": "Ethical/Societal Dimension Topic 4 - Investigating the role of social, psychological and economic aspects of the processes that lead to organized crime (including cyber related offenses), and terrorist networks and their impact on social cohesion", + "topic": "FCT-16-2015" +},{ + "projectID": 816303, + "title": "Personalized Nutrition", + "topic": "DT-SFS-14-2018" +},{ + "projectID": 821051, + "title": "EU-India water co-operation", + "topic": "SC5-12-2018" +},{ + "projectID": 101036092, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020bis" +},{ + "projectID": 885222, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 780839, + "title": "Photonics KET 2017", + "topic": "ICT-30-2017" +},{ + "projectID": 723909, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 681597, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 819090, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 722619, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 964398, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 769497, + "title": "Boosting inclusiveness of ICT-enabled research and innovation", + "topic": "REV-INEQUAL-09-2017" +},{ + "projectID": 773421, + "title": "The effect of climate change on Arctic permafrost and its socio-economic impact, with a focus on coastal areas", + "topic": "BG-11-2017" +},{ + "projectID": 956810, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 724136, + "title": "Technologies for low emission light duty powertrains", + "topic": "GV-02-2016" +},{ + "projectID": 687303, + "title": "Bottom-up space technologies at low TRL", + "topic": "COMPET-03-2015" +},{ + "projectID": 654650, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2015" +},{ + "projectID": 101006717, + "title": "Combined clean biofuel production and phytoremediation solutions from contaminated lands worldwide", + "topic": "LC-SC3-RES-37-2020" +},{ + "projectID": 764759, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 689068, + "title": "Digital representation of health data to improve disease diagnosis and treatment", + "topic": "PHC-30-2015" +},{ + "projectID": 833456, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 875452, + "title": "Support for the large scale uptake of open service platforms in the Active and Healthy Ageing domain", + "topic": "SC1-HCC-02-2019" +},{ + "projectID": 692943, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 722963, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 862658, + "title": "Sustainable European aquaculture 4.0: nutrition and breeding", + "topic": "DT-BG-04-2018-2019" +},{ + "projectID": 645317, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 749287, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 957810, + "title": "Decarbonising energy systems of geographical Islands", + "topic": "LC-SC3-ES-4-2018-2020" +},{ + "projectID": 101017940, + "title": "Environmental Intelligence", + "topic": "FETPROACT-EIC-08-2020" +},{ + "projectID": 657982, + "title": "Demonstration of renewable electricity and heating/cooling technologies", + "topic": "LCE-03-2014" +},{ + "projectID": 722482, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 952633, + "title": "Building blocks for resilience in evolving ICT systems", + "topic": "SU-ICT-02-2020" +},{ + "projectID": 637756, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 760930, + "title": "Cost-effective materials for “power-to-chemical” technologies", + "topic": "NMBP-19-2017" +},{ + "projectID": 101007448, + "title": "Advancing photonics technologies and application driven photonics components and the innovation ecosystem", + "topic": "ICT-37-2020" +},{ + "projectID": 953193, + "title": "Open Innovation Test Beds for materials for building envelopes (IA)", + "topic": "DT-NMBP-05-2020" +},{ + "projectID": 760858, + "title": "Innovative solutions for the conservation of 20th century cultural heritage", + "topic": "NMBP-35-2017" +},{ + "projectID": 829104, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 792355, + "title": "Easier to install and more efficient geothermal systems for retrofitting buildings", + "topic": "LCE-17-2017" +},{ + "projectID": 734899, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 101035013, + "title": "FET Innovation Launchpad", + "topic": "FETOPEN-03-2018-2019-2020" +},{ + "projectID": 734353, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 842633, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 681379, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 723541, + "title": "Digital automation", + "topic": "FOF-11-2016" +},{ + "projectID": 727348, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-07-2016-2017" +},{ + "projectID": 727802, + "title": "Standardisation needs in the field of ICT for Active and Healthy Ageing", + "topic": "SC1-HCO-16-2016" +},{ + "projectID": 734736, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 796603, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871140, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 843303, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 860407, + "title": "Sustainable solutions for bio-based plastics on land and sea", + "topic": "CE-BG-06-2019" +},{ + "projectID": 727624, + "title": "Challenges for disease management: Perennial crops in the tropics and sub-tropics", + "topic": "SFS-11-2016" +},{ + "projectID": 768686, + "title": "Cross-cutting KETs for diagnostics at the point-of-care", + "topic": "NMBP-13-2017" +},{ + "projectID": 958402, + "title": "Artificial Intelligence and Big Data Technologies for Process Industries (CSA)", + "topic": "DT-SPIRE-11-2020" +},{ + "projectID": 952111, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 101016509, + "title": "Cloud Computing: towards a smart cloud computing continuum", + "topic": "ICT-40-2020" +},{ + "projectID": 734391, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 955459, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2020" +},{ + "projectID": 692034, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 727610, + "title": "Improving the technical performance of the Mediterranean aquaculture", + "topic": "SFS-23-2016" +},{ + "projectID": 636501, + "title": "Space exploration – Life support", + "topic": "COMPET-07-2014" +},{ + "projectID": 727451, + "title": "Multi-use of the oceans' marine space, offshore and near-shore: compatibility, regulations, environmental and legal issues", + "topic": "BG-03-2016" +},{ + "projectID": 687447, + "title": "Space exploration – Habitat management", + "topic": "COMPET-04-2015" +},{ + "projectID": 871029, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 953121, + "title": "Next generation organ-on-chip (RIA-LS)", + "topic": "DT-NMBP-23-2020" +},{ + "projectID": 720834, + "title": "Nanoformulation of biologicals", + "topic": "NMBP-10-2016" +},{ + "projectID": 818783, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 722053, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 881775, + "title": "Demonstrator development for the use of Formal Methods in railway environment and Support to implementation of CSIRT to the railway sector", + "topic": "S2R-OC-IP2-01-2019" +},{ + "projectID": 635646, + "title": "Native and alien pests in agriculture and forestry", + "topic": "SFS-03a-2014" +},{ + "projectID": 683237, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 871249, + "title": "5G Long Term Evolution", + "topic": "ICT-20-2019-2020" +},{ + "projectID": 783158, + "title": "IA", + "topic": "ECSEL-2017-1" +},{ + "projectID": 783221, + "title": "RIA", + "topic": "ECSEL-2017-2" +},{ + "projectID": 665158, + "title": "FET-Open research projects", + "topic": "FETOPEN-RIA-2014-2015" +},{ + "projectID": 710722, + "title": "Innovative approach to release and disseminate research results and measure their impact", + "topic": "GARRI-4-2015" +},{ + "projectID": 727872, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 640573, + "title": "Developing the next generation technologies of renewable electricity and heating/cooling", + "topic": "LCE-02-2014" +},{ + "projectID": 664782, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2014" +},{ + "projectID": 894442, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 780751, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 825033, + "title": "Exploiting research outcomes and application potential of the human microbiome for personalised prediction, prevention and treatment of disease", + "topic": "SC1-BHC-03-2018" +},{ + "projectID": 862739, + "title": "Building modern rural policies on long-term visions and societal engagement", + "topic": "RUR-01-2018-2019" +},{ + "projectID": 642688, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 860325, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 101004085, + "title": "EGNSS applications fostering societal resilience and protecting the environment", + "topic": "SU-SPACE-EGNSS-3-2019-2020" +},{ + "projectID": 745718, + "title": "Advanced biomaterials for smart food packaging", + "topic": "BBI-2016-R05" +},{ + "projectID": 829005, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 637738, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 644866, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 899285, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 730497, + "title": "Operationalising insurance value of ecosystems", + "topic": "SC5-09-2016" +},{ + "projectID": 101004159, + "title": "Scientific data exploitation", + "topic": "SPACE-30-SCI-2020" +},{ + "projectID": 101007531, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 870661, + "title": "Understanding migration mobility patterns: elaborating mid and long-term migration scenarios", + "topic": "MIGRATION-01-2019" +},{ + "projectID": 956562, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 731778, + "title": "Photonics KET 2016", + "topic": "ICT-29-2016" +},{ + "projectID": 101004676, + "title": "Mentoring scheme for schools: mainstreaming innovation by spreading the advanced ICT-based teaching practices to a wide circle of schools", + "topic": "DT-TRANSFORMATIONS-21-2020" +},{ + "projectID": 862221, + "title": "Genetic resources and pre-breeding communities", + "topic": "SFS-28-2018-2019-2020" +},{ + "projectID": 945095, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 692145, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 882221, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 770142, + "title": "Democratic discourses and the rule of law", + "topic": "CULT-COOP-01-2017" +},{ + "projectID": 706706, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 861947, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 724922, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 690941, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 725369, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 771874, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 642004, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 777377, + "title": "IDENTIFICATION AND VALIDATION OF BIOMARKERS FOR NON-ALCOHOLIC STEATOHEPATITIS (NASH) AND ACROSS THE SPECTRUM OF NON-ALCOHOLIC FATTY LIVER DISEASE (NAFLD)", + "topic": "IMI2-2016-09-05" +},{ + "projectID": 824128, + "title": "FET Proactive: emerging paradigms and communities", + "topic": "FETPROACT-01-2018" +},{ + "projectID": 883417, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 871126, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 656994, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2014-GF" +},{ + "projectID": 721746, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 659070, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 634143, + "title": "Advancing bioinformatics to meet biomedical and clinical needs", + "topic": "PHC-32-2014" +},{ + "projectID": 637458, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 952470, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 859860, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 716538, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101001016, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 731013, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 702531, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 647355, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 813453, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 751791, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 664726, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 730997, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 870647, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 101022633, + "title": "International cooperation with Japan for Research and Innovation on advanced biofuels and alternative renewable fuels", + "topic": "LC-SC3-RES-25-2020" +},{ + "projectID": 668863, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 861924, + "title": "Sustainable Intensification in Africa", + "topic": "SFS-35-2019-2020" +},{ + "projectID": 665948, + "title": "Citizens and multi-actor engagement for scenario building", + "topic": "ISSI-2-2014" +},{ + "projectID": 945406, + "title": "Restricted Call to maximise impact of IMI2 JU objectives and scientific priorities", + "topic": "IMI2-2019-19-01" +},{ + "projectID": 758481, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 945268, + "title": "Restricted Call to maximise impact of IMI2 JU objectives and scientific priorities", + "topic": "IMI2-2019-19-01" +},{ + "projectID": 963530, + "title": "Long Term EU-Africa Partnership for Research and Innovation actions in the area of renewable energy", + "topic": "LC-SC3-JA-5-2020" +},{ + "projectID": 870405, + "title": "Space Weather", + "topic": "SU-SPACE-22-SEC-2019" +},{ + "projectID": 101032331, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 874864, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 826266, + "title": "Adaptive smart working and living environments supporting active and healthy ageing", + "topic": "SC1-DTH-03-2018" +},{ + "projectID": 765378, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 835140, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 101000574, + "title": "Sustainable wood value chains", + "topic": "LC-RUR-11-2019-2020" +},{ + "projectID": 895875, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101027379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 834728, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 101004825, + "title": "Curation of digital assets and advanced digitisation", + "topic": "DT-TRANSFORMATIONS-12-2018-2020" +},{ + "projectID": 875508, + "title": "Intelligent prediction and identification of environmental risks posed by human medicinal products", + "topic": "IMI2-2019-17-03" +},{ + "projectID": 704681, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 955951, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 818930, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 667224, + "title": "Establishing effectiveness of health care interventions in the paediatric population", + "topic": "PHC-18-2015" +},{ + "projectID": 771113, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 710583, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2015" +},{ + "projectID": 948666, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 654359, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 676137, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 731872, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 778051, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 770037, + "title": "Migration and asylum systems", + "topic": "ENG-GLOBALLY-10-2017" +},{ + "projectID": 653957, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 682068, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 775971, + "title": "New solutions for sustainable production of raw materials", + "topic": "SC5-13-2016-2017" +},{ + "projectID": 948497, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 896523, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 788448, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 750015, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 115797, + "title": "Translational approaches to disease modifying therapy of Type 1 Diabetes Mellitus (T1DM)", + "topic": "IMI2-2014-01-01" +},{ + "projectID": 817663, + "title": "Support to the implementation of the EU-Africa Research and Innovation Partnership on Food and Nutrition Security & Sustainable Agriculture (FNSSA)", + "topic": "SFS-33-2018" +},{ + "projectID": 864358, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 695727, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 821860, + "title": "Copernicus market uptake", + "topic": "DT-SPACE-01-EO-2018-2020" +},{ + "projectID": 115843, + "title": "Rapid diagnostic tests", + "topic": "IMI2-2014-02-05" +},{ + "projectID": 875668, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 743155, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 739558, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 823883, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 892758, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 955620, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 692419, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 755039, + "title": "Fission/fusion cross-cutting research in the area of multi-scale materials modelling", + "topic": "NFRP-13" +},{ + "projectID": 681219, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 824063, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 863808, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 896044, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 696391, + "title": "Closing the research and innovation divide: the crucial role of innovation support services and knowledge exchange", + "topic": "ISIB-02-2015" +},{ + "projectID": 714621, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 945733, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 742312, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 656131, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 813707, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 753427, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 116026, + "title": "Development of an outcomes-focused data platform to empower policy makers and clinicians to optimize care for patients with hematologic malignancies", + "topic": "IMI2-2015-06-04" +},{ + "projectID": 894596, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 724508, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 725249, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 751911, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 733161, + "title": "Multi omics for personalised therapies addressing diseases of the immune system", + "topic": "SC1-PM-01-2016" +},{ + "projectID": 869467, + "title": "New solutions for the sustainable production of raw materials", + "topic": "SC5-09-2018-2019" +},{ + "projectID": 734720, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 667403, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 851093, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 637649, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 638703, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 765042, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 722854, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 773076, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 734759, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 634495, + "title": "Towards a gradual elimination of discards in European fisheries", + "topic": "SFS-09-2014" +},{ + "projectID": 724391, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 770877, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 862170, + "title": "Food Systems Africa", + "topic": "LC-SFS-34-2019" +},{ + "projectID": 748004, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 818437, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 899261, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101020762, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 694482, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 874719, + "title": "Innovation Procurement: Next generation sequencing (NGS) for routine diagnosis", + "topic": "SC1-BHC-10-2019" +},{ + "projectID": 734791, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 964874, + "title": "Use of Real-World Data to advance research on the management of complex chronic conditions", + "topic": "SC1-DTH-12-2020" +},{ + "projectID": 787758, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 861047, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 716063, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 822296, + "title": "Research for inclusive growth: addressing the socioeconomic effects of technological transformations", + "topic": "TRANSFORMATIONS-01-2018" +},{ + "projectID": 953326, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 636876, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 730974, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2016" +},{ + "projectID": 818309, + "title": "Closing nutrient cycles", + "topic": "CE-RUR-08-2018-2019-2020" +},{ + "projectID": 957237, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-51-2020" +},{ + "projectID": 101007804, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 705777, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 706482, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 955684, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 865885, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 951883, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 770299, + "title": "European cultural heritage, access and analysis for a richer interpretation of the past.", + "topic": "CULT-COOP-09-2017" +},{ + "projectID": 870612, + "title": "The impact of technological transformations on children and youth", + "topic": "DT-TRANSFORMATIONS-07-2019" +},{ + "projectID": 664337, + "title": "Teaming", + "topic": "WIDESPREAD-1-2014" +},{ + "projectID": 741487, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 649053, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 707262, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 757291, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 655421, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 860044, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 637747, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 637412, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 683099, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 726950, + "title": "Spatial justice, social cohesion and territorial inequalities", + "topic": "REV-INEQUAL-07-2016" +},{ + "projectID": 730338, + "title": "Multi-stakeholder dialogue platform to promote innovation with nature to address societal challenges", + "topic": "SC5-10-2016" +},{ + "projectID": 101019329, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 645636, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 850614, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 952574, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 817987, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 667661, + "title": "Promoting mental wellbeing in the ageing population", + "topic": "PHC-22-2015" +},{ + "projectID": 701958, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 945301, + "title": "Advancing nuclear education", + "topic": "NFRP-2019-2020-11" +},{ + "projectID": 716162, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 757695, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 839448, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 836071, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 732386, + "title": "New therapies for chronic diseases", + "topic": "SC1-PM-09-2016" +},{ + "projectID": 818431, + "title": "Microbiome applications for sustainable food systems", + "topic": "LC-SFS-03-2018" +},{ + "projectID": 824027, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 667713, + "title": "New therapies for rare diseases", + "topic": "PHC-14-2015" +},{ + "projectID": 642068, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 784988, + "title": "Engaging private consumers towards sustainable energy", + "topic": "EE-06-2016-2017" +},{ + "projectID": 667301, + "title": "Understanding common mechanisms of diseases and their relevance in co-morbidities", + "topic": "PHC-03-2015" +},{ + "projectID": 692891, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 642241, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 899573, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 776282, + "title": "Scientific data exploitation", + "topic": "COMPET-4-2017" +},{ + "projectID": 805426, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 819422, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 733280, + "title": "Networking and optimising the use of population and patient cohorts at EU level", + "topic": "SC1-PM-04-2016" +},{ + "projectID": 802933, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 799929, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 777483, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 798293, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862740, + "title": "Food Systems Africa", + "topic": "LC-SFS-34-2019" +},{ + "projectID": 803466, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 689173, + "title": "Preparatory Phase of ESFRI projects", + "topic": "INFRADEV-2-2015" +},{ + "projectID": 874708, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 837527, + "title": "Apply emerging breakthrough technologies to improve existing value chains", + "topic": "BBI.2018.SO2.R6" +},{ + "projectID": 765912, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101028177, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 872396, + "title": "Building the SwafS knowledge base", + "topic": "SwafS-20-2018-2019" +},{ + "projectID": 787580, + "title": "Implementing a European Train-the-trainers initiative with regard to Ethics and Research Integrity", + "topic": "SwafS-27-2017" +},{ + "projectID": 843511, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 814102, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 661580, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 101021701, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 101004392, + "title": "Enhancing access and uptake of education to reverse inequalities", + "topic": "TRANSFORMATIONS-22-2020" +},{ + "projectID": 677809, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 817634, + "title": "Thematic networks compiling knowledge ready for practice", + "topic": "RUR-15-2018-2019-2020" +},{ + "projectID": 678732, + "title": "Tackling malnutrition in the elderly", + "topic": "SFS-16-2015" +},{ + "projectID": 805371, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 856506, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 675657, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-EID)", + "topic": "MSCA-ITN-2015-EID" +},{ + "projectID": 654386, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 727848, + "title": "Thematic Networks compiling knowledge ready for practice", + "topic": "RUR-10-2016-2017" +},{ + "projectID": 645722, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 722467, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 825020, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 101004590, + "title": "Transformative impact of disruptive technologies in public services", + "topic": "DT-TRANSFORMATIONS-02-2018-2019-2020" +},{ + "projectID": 730984, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 734536, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 857203, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 633666, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 758539, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 771676, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 796910, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 634413, + "title": "Understanding health, ageing and disease: determinants, risk factors and pathways", + "topic": "PHC-01-2014" +},{ + "projectID": 825585, + "title": "Future Hyper-connected Sociality", + "topic": "ICT-28-2018" +},{ + "projectID": 862011, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2019-POC" +},{ + "projectID": 955685, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 654101, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 813483, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 872841, + "title": "Building the SwafS knowledge base", + "topic": "SwafS-20-2018-2019" +},{ + "projectID": 822688, + "title": "Addressing the challenge of forced displacement", + "topic": "MIGRATION-08-2018" +},{ + "projectID": 952070, + "title": "Towards a vibrant European network of AI excellence centres", + "topic": "ICT-48-2020" +},{ + "projectID": 813782, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 713613, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 671633, + "title": "HPC Core Technologies, Programming Environments and Algorithms for Extreme Parallelism and Extreme Data Applications", + "topic": "FETHPC-1-2014" +},{ + "projectID": 884762, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 692455, + "title": "Cyber-physical Systems", + "topic": "ECSEL-17-2015" +},{ + "projectID": 645622, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 765267, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 643644, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 714294, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 706708, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 958398, + "title": "Digital Building Twins (RIA)", + "topic": "LC-EEB-08-2020" +},{ + "projectID": 715753, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 101015922, + "title": "5G PPP – Smart Connectivity beyond 5G", + "topic": "ICT-52-2020" +},{ + "projectID": 801413, + "title": "FET-Open research and innovation actions", + "topic": "FETOPEN-01-2016-2017" +},{ + "projectID": 715093, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 714221, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 687884, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 101025563, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 885394, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 639554, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 872172, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 850925, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 694665, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 856718, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 952147, + "title": "Interactive Technologies", + "topic": "ICT-55-2020" +},{ + "projectID": 695464, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 800192, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 862025, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 666992, + "title": "Understanding disease: systems medicine", + "topic": "PHC-02-2015" +},{ + "projectID": 639366, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 825492, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-2018-PoC" +},{ + "projectID": 810367, + "title": "ERC Synergy Grant", + "topic": "ERC-2018-SyG" +},{ + "projectID": 641652, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 727283, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 688722, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 788851, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 645865, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 833683, + "title": "Dynamic countering of cyber-attacks", + "topic": "SU-ICT-01-2018" +},{ + "projectID": 856408, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 713626, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 693150, + "title": "Innovation ecosystems of digital cultural assets", + "topic": "REFLECTIVE-6-2015" +},{ + "projectID": 101008257, + "title": "Development and validation of a method to predict non-linear aerodynamic characteristics of lifting surfaces with controls", + "topic": "JTI-CS2-2020-CfP11-LPA-01-91" +},{ + "projectID": 647134, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 101030817, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101016496, + "title": "Accelerating the uptake of computer simulations for testing medicines and medical devices", + "topic": "SC1-DTH-06-2020" +},{ + "projectID": 101030793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 637972, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 757672, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101024493, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 687992, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 786854, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 801015, + "title": "Transition to Exascale Computing", + "topic": "FETHPC-02-2017" +},{ + "projectID": 773875, + "title": "Robotics Advances for Precision Farming", + "topic": "SFS-05-2017" +},{ + "projectID": 811099, + "title": "Twinning", + "topic": "WIDESPREAD-05-2017" +},{ + "projectID": 688237, + "title": "Integrating experiments and facilities in FIRE+", + "topic": "ICT-12-2015" +},{ + "projectID": 706561, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 643666, + "title": "Advancing active and healthy ageing with ICT: service robotics within assisted living environments", + "topic": "PHC-19-2014" +},{ + "projectID": 643943, + "title": "FIRE+ (Future Internet Research & Experimentation)", + "topic": "ICT-11-2014" +},{ + "projectID": 864729, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 713999, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 688088, + "title": "Internet of Things and Platforms for Connected Smart Objects", + "topic": "ICT-30-2015" +},{ + "projectID": 713709, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 688131, + "title": "Customised and low power computing", + "topic": "ICT-04-2015" +},{ + "projectID": 820466, + "title": "FET Flagship on Quantum Technologies", + "topic": "FETFLAG-03-2018" +},{ + "projectID": 690974, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 731540, + "title": "Advanced robot capabilities research and take-up", + "topic": "ICT-25-2016-2017" +},{ + "projectID": 714381, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 765374, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 872442, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 955495, + "title": "HPC and data centric environments and application platforms", + "topic": "EuroHPC-02-2019" +},{ + "projectID": 644729, + "title": "Cybersecurity, Trustworthy ICT", + "topic": "ICT-32-2014" +},{ + "projectID": 101018342, + "title": "Digital Security and privacy for citizens and Small and Medium Enterprises and Micro Enterprises", + "topic": "SU-DS03-2019-2020" +},{ + "projectID": 732051, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 714567, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 727334, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 732638, + "title": "Future Internet Experimentation - Building a European experimental Infrastructure", + "topic": "ICT-13-2016" +},{ + "projectID": 637339, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 956229, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 101008468, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 779899, + "title": "R&I on IoT integration and platforms", + "topic": "IoT-03-2017" +},{ + "projectID": 654028, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 864313, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 899739, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 724063, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 645097, + "title": "Robotics", + "topic": "ICT-23-2014" +},{ + "projectID": 831620, + "title": "Fostering transnational cooperation between National Contact Points (NCP) in the area of ICT: follow-up project", + "topic": "IBA-ICT-NCP-2018" +},{ + "projectID": 643063, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 800144, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 951821, + "title": "Complementary call on Quantum Computing", + "topic": "FETFLAG-05-2020" +},{ + "projectID": 760907, + "title": "Next generation system integrating tangible and intangible materials model components to support innovation in industry", + "topic": "NMBP-25-2017" +},{ + "projectID": 955520, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 639139, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 877539, + "title": "ARCHITECTURES, COMPONENTS, AND SYSTEMS FOR VALIDATION/SIMULATION OF CONNECTED AUTOMATED VEHICLES", + "topic": "ECSEL-RIA-2019-2-Special-Topic-1" +},{ + "projectID": 826421, + "title": "Exploiting the full potential of in-silico medicine research for personalised diagnostics and therapies in cloud-based environments", + "topic": "SC1-DTH-07-2018" +},{ + "projectID": 835294, + "title": "ERC Advanced Grant", + "topic": "ERC-2018-ADG" +},{ + "projectID": 683032, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 101001995, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 722068, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 678304, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 722734, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 731529, + "title": "Software Technologies", + "topic": "ICT-10-2016" +},{ + "projectID": 826276, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 871245, + "title": "Robotics Core Technology", + "topic": "ICT-10-2019-2020" +},{ + "projectID": 788065, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 731102, + "title": "User-driven e-infrastructure innovation", + "topic": "EINFRA-22-2016" +},{ + "projectID": 767064, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 813211, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 644178, + "title": "Tools and Methods for Software Development", + "topic": "ICT-09-2014" +},{ + "projectID": 694209, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 951850, + "title": "Design Studies", + "topic": "INFRADEV-01-2019-2020" +},{ + "projectID": 732505, + "title": "Cloud Computing", + "topic": "ICT-06-2016" +},{ + "projectID": 759159, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 694122, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2015" +},{ + "projectID": 755235, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 851716, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 825081, + "title": "A multilingual Next Generation Internet", + "topic": "ICT-29-2018" +},{ + "projectID": 871932, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 777890, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 823827, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 645568, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 823761, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 731016, + "title": "Support to policies and international cooperation for e-infrastructures", + "topic": "INFRASUPP-03-2016" +},{ + "projectID": 959157, + "title": "New forms of delivering public goods and inclusive public services", + "topic": "DT-GOVERNANCE-05-2018-2019-2020" +},{ + "projectID": 675121, + "title": "e-Infrastructures for virtual research environments (VRE)", + "topic": "EINFRA-9-2015" +},{ + "projectID": 654416, + "title": "Network of HPC Competence Centres for SMEs", + "topic": "EINFRA-6-2014" +},{ + "projectID": 862665, + "title": "ERANETs in agri-food", + "topic": "SFS-31-2019" +},{ + "projectID": 959234, + "title": "Developing deliberative and participatory democracies through experimentation", + "topic": "GOVERNANCE-21-2020" +},{ + "projectID": 677651, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101002696, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 101038064, + "title": "Widening Fellowships", + "topic": "WF-03-2020" +},{ + "projectID": 823961, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 675675, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 945105, + "title": "Innovative actions for improving urban health and wellbeing - addressing environment, climate and socioeconomic factors", + "topic": "SC1-BHC-29-2020" +},{ + "projectID": 714704, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 950398, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 964770, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 101004811, + "title": "Evolving European media landscapes and Europeanisation", + "topic": "TRANSFORMATIONS-10-2020" +},{ + "projectID": 871127, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 821558, + "title": "Human Tumour Microenvironment Immunoprofiling", + "topic": "IMI2-2017-13-08" +},{ + "projectID": 770248, + "title": "Strengthening Europe's position in the global context: science diplomacy and intercultural relations", + "topic": "ENG-GLOBALLY-01-2017" +},{ + "projectID": 772346, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 750917, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 777084, + "title": "Personalised computer models and in-silico systems for well-being", + "topic": "SC1-PM-17-2017" +},{ + "projectID": 896115, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 687967, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 814302, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 683080, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 692199, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 890285, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 674838, + "title": "Enhancing the innovation management capacity of SMEs", + "topic": "INNOVATION" +},{ + "projectID": 869448, + "title": "Visionary and integrated solutions to improve well-being and health in cities", + "topic": "SC5-14-2019" +},{ + "projectID": 874477, + "title": "PJ.02 W2 Airport airside and runway throughput", + "topic": "SESAR-IR-VLD-WAVE2-03-2019" +},{ + "projectID": 948057, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 860516, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 879419, + "title": "H2020 ENTREPRISE EUROPE NETWORK SGA4 2020-2021", + "topic": "H2020-EEN-SGA4" +},{ + "projectID": 691246, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 734139, + "title": "Airport Safety Nets", + "topic": "SESAR.IR-VLD.Wave1-06-2015" +},{ + "projectID": 861381, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 814624, + "title": "Innovative and affordable solutions for the preventive conservation of cultural heritage (IA)", + "topic": "NMBP-33-2018" +},{ + "projectID": 727025, + "title": "Inequalities in the EU and their consequences for democracy, social cohesion and inclusion", + "topic": "REV-INEQUAL-05-2016" +},{ + "projectID": 642996, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 874472, + "title": "PJ.04 W2 Total airport management", + "topic": "SESAR-IR-VLD-WAVE2-04-2019" +},{ + "projectID": 955643, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 776758, + "title": "Innovative financing, business and governance models for adaptive re-use of cultural heritage", + "topic": "SC5-22-2017" +},{ + "projectID": 885666, + "title": "ERC Advanced Grant", + "topic": "ERC-2019-ADG" +},{ + "projectID": 824481, + "title": "Developing research integrity standard operating procedures", + "topic": "SwafS-03-2018" +},{ + "projectID": 831262, + "title": "EEN H2020 SGA3", + "topic": "H2020EENSGA3" +},{ + "projectID": 770564, + "title": "The European Union and the global challenge of migration", + "topic": "ENG-GLOBALLY-03-2017" +},{ + "projectID": 819110, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 960366, + "title": "Developing deliberative and participatory democracies through experimentation", + "topic": "GOVERNANCE-21-2020" +},{ + "projectID": 693427, + "title": "European cohesion, regional and urban policies and the perceptions of Europe", + "topic": "REFLECTIVE-3-2015" +},{ + "projectID": 818190, + "title": "Contracts for effective and lasting delivery of agri-environmental public goods", + "topic": "RUR-03-2018" +},{ + "projectID": 710780, + "title": "Pan-European public outreach: exhibitions and science cafés engaging citizens in science", + "topic": "ISSI-1-2015" +},{ + "projectID": 739509, + "title": "H2020 2D CONSULTATION EEN", + "topic": "H2020-SGA2-EEN" +},{ + "projectID": 681202, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2015" +},{ + "projectID": 870572, + "title": "Trust in governance", + "topic": "GOVERNANCE-01-2019" +},{ + "projectID": 883204, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SU-DRS04-2019-2020" +},{ + "projectID": 727058, + "title": "Spatial justice, social cohesion and territorial inequalities", + "topic": "REV-INEQUAL-07-2016" +},{ + "projectID": 101016674, + "title": "Support for the Research and Innovation Dimension of European Universities (Part I)", + "topic": "IBA-SwafS-Support-1-2020" +},{ + "projectID": 778384, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 952324, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 655075, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 770309, + "title": "Religious diversity in Europe - past, present and future", + "topic": "CULT-COOP-05-2017" +},{ + "projectID": 860322, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 734161, + "title": "4D Trajectory Management", + "topic": "SESAR.IR-VLD.Wave1-21-2015" +},{ + "projectID": 633125, + "title": "SCIENCE WAF SOCIETY", + "topic": "SCIENCE WAF SOCIETY" +},{ + "projectID": 763798, + "title": "Teaming Phase 1", + "topic": "WIDESPREAD-04-2017" +},{ + "projectID": 871043, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 722446, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 730890, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 734824, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 825215, + "title": "Fintech: Support to experimentation frameworks and regulatory compliance", + "topic": "ICT-35-2018" +},{ + "projectID": 727069, + "title": "Tackling inequalities at their roots: new policies for fairness in education from early age", + "topic": "REV-INEQUAL-06-2016" +},{ + "projectID": 649435, + "title": "European societies after the crisis", + "topic": "EURO-3-2014" +},{ + "projectID": 787031, + "title": "Chemical, biological, radiological and nuclear (CBRN) cluster", + "topic": "SEC-05-DRS-2016-2017" +},{ + "projectID": 101036484, + "title": "Restoring biodiversity and ecosystem services", + "topic": "LC-GD-7-1-2020" +},{ + "projectID": 800253, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 857552, + "title": "Twinning", + "topic": "WIDESPREAD-03-2018" +},{ + "projectID": 731081, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 731781, + "title": "Increased Runway and Airport Throughput", + "topic": "SESAR.IR-VLD.Wave1-04-2015" +},{ + "projectID": 780643, + "title": "Next Generation Internet", + "topic": "ICT-41-2017" +},{ + "projectID": 823803, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 945358, + "title": "Central repository of digital pathology slides to support the development of artificial intelligence tools", + "topic": "IMI2-2019-18-01" +},{ + "projectID": 826452, + "title": "ECSEL-2018-1-IA", + "topic": "ECSEL-2018-1-IA" +},{ + "projectID": 951724, + "title": "Coordination and Support to better data and secure cross-border digital infrastructures building on European capacities for genomics and personalised medicine", + "topic": "SC1-HCC-06-2020" +},{ + "projectID": 642620, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 676531, + "title": "Centres of Excellence for computing applications", + "topic": "EINFRA-5-2015" +},{ + "projectID": 101016775, + "title": "AI for Genomics and Personalised Medicine", + "topic": "DT-TDS-04-2020" +},{ + "projectID": 874662, + "title": "The Human Exposome Project: a toolbox for assessing and addressing the impact of environment on health", + "topic": "SC1-BHC-28-2019" +},{ + "projectID": 633838, + "title": "Provision of public goods by EU agriculture and forestry: Putting the concept into practice", + "topic": "ISIB-01-2014" +},{ + "projectID": 823893, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 898223, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 101004719, + "title": "Pilot for a new model of Integrating Activities", + "topic": "INFRAIA-03-2020" +},{ + "projectID": 857543, + "title": "Teaming Phase 2", + "topic": "WIDESPREAD-01-2018-2019" +},{ + "projectID": 688991, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 861426, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 640645, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 825652, + "title": "Next Generation Internet - An Open Internet Initiative", + "topic": "ICT-24-2018-2019" +},{ + "projectID": 871128, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 730895, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2017" +},{ + "projectID": 702548, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 857652, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 665779, + "title": "Marie Skłodowska-Curie Co-funding of regional, national and international programmes (COFUND-FP)", + "topic": "MSCA-COFUND-2014-FP" +},{ + "projectID": 654166, + "title": "International cooperation for research infrastructures", + "topic": "INFRASUPP-6-2014" +},{ + "projectID": 825775, + "title": "International flagship collaboration with Canada for human data storage, integration and sharing to enable personalised medicine approaches", + "topic": "SC1-BHC-05-2018" +},{ + "projectID": 704187, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 665917, + "title": "Innovative ways to make science education and scientific careers attractive to young people", + "topic": "SEAC-1-2014" +},{ + "projectID": 777222, + "title": "Fostering co-innovation for future detection and imaging technologies", + "topic": "INFRAINNOV-01-2017" +},{ + "projectID": 772369, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 637506, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 675440, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 759926, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 101032999, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 866207, + "title": "ERC Consolidator Grant", + "topic": "ERC-2019-COG" +},{ + "projectID": 777563, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-02-2017" +},{ + "projectID": 858199, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 788223, + "title": "ERC Advanced Grant", + "topic": "ERC-2017-ADG" +},{ + "projectID": 669668, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 702610, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2015-EF" +},{ + "projectID": 675265, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 780151, + "title": "ERC-Proof of Concept", + "topic": "ERC-2017-PoC" +},{ + "projectID": 721624, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 633307, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 802836, + "title": "ERC Starting Grant", + "topic": "ERC-2018-STG" +},{ + "projectID": 730943, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2016" +},{ + "projectID": 101008548, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 734303, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2016" +},{ + "projectID": 637019, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 659239, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 749793, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 966696, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 680552, + "title": "ERC Proof of Concept Grant", + "topic": "ERC-PoC-2015" +},{ + "projectID": 655279, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 726276, + "title": "ERC Consolidator Grant", + "topic": "ERC-2016-COG" +},{ + "projectID": 796961, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 949077, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 101007492, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 766974, + "title": "FET-Open Coordination and Support Actions", + "topic": "FETOPEN-03-2017" +},{ + "projectID": 644014, + "title": "Innovation and Entrepreneurship Support", + "topic": "ICT-35-2014" +},{ + "projectID": 822185, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2018" +},{ + "projectID": 819627, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 690575, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2015" +},{ + "projectID": 101008126, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 101004462, + "title": "Co-Innovation platform for research infrastructure technologies", + "topic": "INFRAINNOV-03-2020" +},{ + "projectID": 721559, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2016" +},{ + "projectID": 676548, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 644121, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 843134, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 679038, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 861198, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 659147, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 896690, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 731086, + "title": "Support to Technological Infrastructures", + "topic": "INFRAINNOV-02-2016" +},{ + "projectID": 872901, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2019" +},{ + "projectID": 644260, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 764991, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 642889, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 745954, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 690599, + "title": "Twinning", + "topic": "H2020-TWINN-2015" +},{ + "projectID": 777431, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 675587, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 731011, + "title": "User-driven e-infrastructure innovation", + "topic": "EINFRA-22-2016" +},{ + "projectID": 863410, + "title": "Prototyping new innovative services", + "topic": "INFRAEOSC-02-2019" +},{ + "projectID": 871738, + "title": "Computing technologies and engineering methods for cyber-physical systems of systems", + "topic": "ICT-01-2019" +},{ + "projectID": 860843, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 872336, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 777554, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 873411, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 687831, + "title": "Robotics", + "topic": "ICT-24-2015" +},{ + "projectID": 688865, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 101016982, + "title": "An empowering, inclusive Next Generation Internet", + "topic": "ICT-57-2020" +},{ + "projectID": 844951, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 818194, + "title": "Socio-economic impacts of digitisation of agriculture and rural areas", + "topic": "RUR-02-2018" +},{ + "projectID": 727188, + "title": "Virtual museums and social platform on European digital heritage, memory, identity and cultural interaction.", + "topic": "CULT-COOP-08-2016" +},{ + "projectID": 693210, + "title": "Innovative schemes for open innovation and science 2.0", + "topic": "INSO-4-2015" +},{ + "projectID": 688095, + "title": "Technologies for better human learning and teaching", + "topic": "ICT-20-2015" +},{ + "projectID": 865123, + "title": "Development of a multipurpose test rig and validation of an innovative rotorcraft vertical tail", + "topic": "JTI-CS2-2018-CFP09-AIR-02-74" +},{ + "projectID": 824769, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101037424, + "title": "Climate-resilient Innovation Packages for EU regions", + "topic": "LC-GD-1-3-2020" +},{ + "projectID": 731349, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2016-2017" +},{ + "projectID": 777981, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2017" +},{ + "projectID": 688813, + "title": "Collective Awareness Platforms for Sustainability and Social Innovation", + "topic": "ICT-10-2015" +},{ + "projectID": 731581, + "title": "Big Data PPP: cross-sectorial and cross-lingual data integration and experimentation", + "topic": "ICT-14-2016-2017" +},{ + "projectID": 957362, + "title": "Artificial intelligence for manufacturing", + "topic": "ICT-38-2020" +},{ + "projectID": 823711, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 818873, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2018" +},{ + "projectID": 101007881, + "title": "Innovative light metallic and thermoplastic airframe section full scale testing", + "topic": "JTI-CS2-2020-CFP11-AIR-03-10" +},{ + "projectID": 857645, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 722973, + "title": "European Researchers' Night", + "topic": "MSCA-NIGHT-2016" +},{ + "projectID": 824323, + "title": "Building Open Science platforms in transport research", + "topic": "MG-4-2-2018" +},{ + "projectID": 654213, + "title": "Policy measures for research infrastructures", + "topic": "INFRASUPP-5-2014" +},{ + "projectID": 675789, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101037342, + "title": "Enabling citizens to act on climate change, for sustainable development and environmental protection through education, citizen science, observation initiatives, and civic engagement", + "topic": "LC-GD-10-3-2020" +},{ + "projectID": 870228, + "title": "Supporting the emergence of data markets and the data economy", + "topic": "ICT-13-2018-2019" +},{ + "projectID": 955895, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2020" +},{ + "projectID": 824466, + "title": "Open schooling and collaboration on science education", + "topic": "SwafS-01-2018-2019-2020" +},{ + "projectID": 873026, + "title": "Cluster facilitated projects for new industrial value chains", + "topic": "INNOSUP-01-2018-2020" +},{ + "projectID": 101000518, + "title": "Towards a productive, healthy, resilient, sustainable and highly-valued Black Sea", + "topic": "BG-11-2020" +},{ + "projectID": 691554, + "title": "Cluster faciltated projects for new value chains", + "topic": "INNOSUP-1-2015" +},{ + "projectID": 645694, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 732907, + "title": "Big data PPP: privacy-preserving big data technologies", + "topic": "ICT-18-2016" +},{ + "projectID": 645124, + "title": "Smart Networks and novel Internet Architectures", + "topic": "ICT-05-2014" +},{ + "projectID": 832735, + "title": "Technologies to enhance the fight against crime and terrorism", + "topic": "SU-FCT02-2018-2019-2020" +},{ + "projectID": 653747, + "title": "Urban security topic 1: Innovative solutions to counter security challenges connected with large urban environment", + "topic": "FCT-10-2014" +},{ + "projectID": 665940, + "title": "Scientific Information in the Digital Age: Text and Data Mining (TDM)", + "topic": "GARRI-3-2014" +},{ + "projectID": 101004212, + "title": "Space hubs (support to start-ups)", + "topic": "DT-SPACE-26-BIZ-2020" +},{ + "projectID": 958478, + "title": "Energy-efficient manufacturing system management (IA)", + "topic": "DT-FOF-09-2020" +},{ + "projectID": 633335, + "title": "European Researchers' Night (NIGHT)", + "topic": "MSCA-NIGHT-2014" +},{ + "projectID": 824091, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 101021801, + "title": "Human factors, and social, societal, and organisational aspects to solve issues in fighting against crime and terrorism", + "topic": "SU-FCT01-2018-2019-2020" +},{ + "projectID": 101000318, + "title": "Fisheries in the full ecosystem context", + "topic": "BG-10-2020" +},{ + "projectID": 825041, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 731861, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 952083, + "title": "Twinning", + "topic": "WIDESPREAD-05-2020" +},{ + "projectID": 872859, + "title": "Exploring and supporting citizen science", + "topic": "SwafS-15-2018-2019" +},{ + "projectID": 101004468, + "title": "European Competence Centre for the preservation and conservation of Monuments and Site", + "topic": "DT-TRANSFORMATIONS-20-2020" +},{ + "projectID": 101007702, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 812673, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 874710, + "title": "Pilot actions to build the foundations of a human cell atlas", + "topic": "SC1-BHC-31-2019" +},{ + "projectID": 637695, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 765290, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 770121, + "title": "Current European and cross-national comparative research and research actions on Migration", + "topic": "REV-INEQUAL-11-2017" +},{ + "projectID": 101025627, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 957641, + "title": "Call for proposals for ERC Proof of Concept Grant", + "topic": "ERC-2020-POC" +},{ + "projectID": 743685, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 742225, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 708310, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-GF)", + "topic": "MSCA-IF-2015-GF" +},{ + "projectID": 658933, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 721184, + "title": "INFRA", + "topic": "INFRA" +},{ + "projectID": 871060, + "title": "Preparatory Phase of new ESFRI projects and early phase support to ESFRI high strategic potential areas", + "topic": "INFRADEV-02-2019-2020" +},{ + "projectID": 674901, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2015-ETN" +},{ + "projectID": 101003210, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 823798, + "title": "Policy and international cooperation measures for research infrastructures", + "topic": "INFRASUPP-01-2018-2019" +},{ + "projectID": 871112, + "title": "Network of research infrastructure Industrial Liaison and Contact Officers", + "topic": "INFRAINNOV-02-2019" +},{ + "projectID": 751988, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 737600, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101008589, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 813497, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2018" +},{ + "projectID": 870299, + "title": "Understanding migration mobility patterns: elaborating mid and long-term migration scenarios", + "topic": "MIGRATION-01-2019" +},{ + "projectID": 656601, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 798573, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 851564, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 890874, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2019" +},{ + "projectID": 654164, + "title": "Integrating and opening existing national and regional research infrastructures of European interest", + "topic": "INFRAIA-1-2014-2015" +},{ + "projectID": 634429, + "title": "Scientific basis and tools for preventing and mitigating parasitic diseases of European farmed fish", + "topic": "SFS-10a-2014" +},{ + "projectID": 638013, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2014" +},{ + "projectID": 819298, + "title": "ERC Consolidator Grant", + "topic": "ERC-2018-COG" +},{ + "projectID": 659722, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 737634, + "title": "ERC-Proof of Concept-2016", + "topic": "ERC-PoC-2016" +},{ + "projectID": 101008129, + "title": "Research and Innovation Staff Exchange", + "topic": "MSCA-RISE-2020" +},{ + "projectID": 758703, + "title": "ERC Starting Grant", + "topic": "ERC-2017-STG" +},{ + "projectID": 731065, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2016-2017" +},{ + "projectID": 642095, + "title": "Marie Skłodowska-Curie Innovative Training Networks (ITN-ETN)", + "topic": "MSCA-ITN-2014-ETN" +},{ + "projectID": 675570, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 674939, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 871111, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 860002, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2019" +},{ + "projectID": 644583, + "title": "Cracking the language barrier", + "topic": "ICT-17-2014" +},{ + "projectID": 101026470, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 843379, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 949708, + "title": "ERC STARTING GRANTS", + "topic": "ERC-2020-STG" +},{ + "projectID": 716894, + "title": "ERC Starting Grant", + "topic": "ERC-2016-STG" +},{ + "projectID": 863420, + "title": "Prototyping new innovative services", + "topic": "INFRAEOSC-02-2019" +},{ + "projectID": 676529, + "title": "Individual implementation and operation of ESFRI projects", + "topic": "INFRADEV-3-2015" +},{ + "projectID": 855158, + "title": "ERC Synergy Grant", + "topic": "ERC-2019-SyG" +},{ + "projectID": 101020405, + "title": "ERC ADVANCED GRANT", + "topic": "ERC-2020-ADG" +},{ + "projectID": 870649, + "title": "Understanding migration mobility patterns: elaborating mid and long-term migration scenarios", + "topic": "MIGRATION-01-2019" +},{ + "projectID": 101004469, + "title": "Curation of digital assets and advanced digitisation", + "topic": "DT-TRANSFORMATIONS-12-2018-2020" +},{ + "projectID": 751387, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 748671, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 654039, + "title": "Provision of core services across e-infrastructures", + "topic": "EINFRA-7-2014" +},{ + "projectID": 952165, + "title": "Centres of Excellence in exascale computing", + "topic": "INFRAEDI-05-2020" +},{ + "projectID": 824516, + "title": "Pre-Commercial Procurement open", + "topic": "ICT-34-2018-2019" +},{ + "projectID": 777523, + "title": "Platform-driven e-infrastructure innovation", + "topic": "EINFRA-21-2017" +},{ + "projectID": 951972, + "title": "Reinforcing European presence in international ICT standardisation: Standardisation Observatory and Support Facility", + "topic": "ICT-45-2020" +},{ + "projectID": 797966, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 677936, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 101004984, + "title": "Integrating Activities for Starting Communities", + "topic": "INFRAIA-02-2020" +},{ + "projectID": 899287, + "title": "FET-Open Challenging Current Thinking", + "topic": "FETOPEN-01-2018-2019-2020" +},{ + "projectID": 839704, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 731112, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2016-2017" +},{ + "projectID": 654248, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 669334, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 670133, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 654119, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 789672, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 871081, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 823914, + "title": "Integrating Activities for Advanced Communities", + "topic": "INFRAIA-01-2018-2019" +},{ + "projectID": 750240, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 841581, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2018" +},{ + "projectID": 874764, + "title": "Regenerative medicine: from new insights to new applications", + "topic": "SC1-BHC-07-2019" +},{ + "projectID": 850554, + "title": "ERC Starting Grant", + "topic": "ERC-2019-STG" +},{ + "projectID": 745885, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 671084, + "title": "ERC Advanced Grant", + "topic": "ERC-ADG-2014" +},{ + "projectID": 771453, + "title": "ERC Consolidator Grant", + "topic": "ERC-2017-COG" +},{ + "projectID": 871129, + "title": "Individual support to ESFRI and other world-class research infrastructures", + "topic": "INFRADEV-03-2018-2019" +},{ + "projectID": 817946, + "title": "Biodiversity in action: across farmland and the value chain", + "topic": "SFS-01-2018-2019-2020" +},{ + "projectID": 654221, + "title": "Implementation and operation of cross-cutting services and solutions for clusters of ESFRI and other relevant research infrastructure initiatives", + "topic": "INFRADEV-4-2014-2015" +},{ + "projectID": 678423, + "title": "ERC Starting Grant", + "topic": "ERC-StG-2015" +},{ + "projectID": 765966, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 761816, + "title": "5G PPP Research and Validation of critical technologies and systems", + "topic": "ICT-07-2017" +},{ + "projectID": 101026478, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 101002885, + "title": "ERC CONSOLIDATOR GRANTS", + "topic": "ERC-2020-COG" +},{ + "projectID": 750035, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2016" +},{ + "projectID": 720918, + "title": "Bioconversion of non-agricultural waste into biomolecules for industrial applications", + "topic": "BIOTEC-02-2016" +},{ + "projectID": 657569, + "title": "Marie Skłodowska-Curie Individual Fellowships (IF-EF)", + "topic": "MSCA-IF-2014-EF" +},{ + "projectID": 780125, + "title": "Next Generation Internet", + "topic": "ICT-41-2017" +},{ + "projectID": 777449, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 871582, + "title": "EU-US collaboration on NGI", + "topic": "ICT-31-2018-2019" +},{ + "projectID": 831644, + "title": "Support to the EOSC Governance", + "topic": "INFRAEOSC-05-2018-2019" +},{ + "projectID": 823782, + "title": "Connecting ESFRI infrastructures through Cluster projects", + "topic": "INFRAEOSC-04-2018" +},{ + "projectID": 957044, + "title": "Software Technologies", + "topic": "ICT-50-2020" +},{ + "projectID": 856777, + "title": "Advanced 5G validation trials across multiple vertical industries", + "topic": "ICT-19-2019" +},{ + "projectID": 826293, + "title": "Toolkit for assessing and reducing cyber risks in hospitals and care centres to protect privacy/data/infrastructures", + "topic": "SU-TDS-02-2018" +},{ + "projectID": 690911, + "title": "Supporting the community in deploying a common framework for measuring the energy and environmental efficiency of the ICT-sector", + "topic": "LCE-23-2015" +},{ + "projectID": 958371, + "title": "Towards Standardised Documentation of Data through taxonomies and ontologies (CSA)", + "topic": "DT-NMBP-39-2020" +},{ + "projectID": 740129, + "title": "EU Cooperation and International Dialogues in Cybersecurity and Privacy Research and Innovation", + "topic": "DS-05-2016" +},{ + "projectID": 779747, + "title": "Big data PPP: research addressing main technology challenges of the data economy", + "topic": "ICT-16-2017" +},{ + "projectID": 870675, + "title": "Pilot on using the European cloud infrastructure for public administrations", + "topic": "DT-GOVERNANCE-12-2019-2020" +},{ + "projectID": 786668, + "title": "Cybersecurity PPP: Addressing Advanced Cyber Security Threats and Threat Actors", + "topic": "DS-07-2017" +},{ + "projectID": 648804, + "title": "ERC Consolidator Grant", + "topic": "ERC-CoG-2014" +},{ + "projectID": 739511, + "title": "Preparatory Phase and support to early phase of ESFRI projects", + "topic": "INFRADEV-02-2016" +},{ + "projectID": 101007937, + "title": "Tumour plasticity", + "topic": "IMI2-2020-20-04" +},{ + "projectID": 742732, + "title": "ERC Advanced Grant", + "topic": "ERC-2016-ADG" +},{ + "projectID": 732340, + "title": "Enabling responsible ICT-related research and innovation", + "topic": "ICT-35-2016" +},{ + "projectID": 764965, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 645701, + "title": "Marie Skłodowska-Curie Research and Innovation Staff Exchange (RISE)", + "topic": "MSCA-RISE-2014" +},{ + "projectID": 777489, + "title": "Design Studies", + "topic": "INFRADEV-01-2017" +},{ + "projectID": 101033214, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2020" +},{ + "projectID": 869226, + "title": "Inter-relations between climate change, biodiversity and ecosystem services", + "topic": "LC-CLA-06-2019" +},{ + "projectID": 799291, + "title": "Individual Fellowships", + "topic": "MSCA-IF-2017" +},{ + "projectID": 780439, + "title": "Reinforcing European presence in international ICT standardisation", + "topic": "ICT-40-2017" +},{ + "projectID": 101017452, + "title": "Increasing the service offer of the EOSC Portal", + "topic": "INFRAEOSC-07-2020" +},{ + "projectID": 830927, + "title": "Establishing and operating a pilot for a Cybersecurity Competence Network to develop and implement a common Cybersecurity Research & Innovation Roadmap", + "topic": "SU-ICT-03-2018" +},{ + "projectID": 863448, + "title": "Prototyping new innovative services", + "topic": "INFRAEOSC-02-2019" +},{ + "projectID": 884161, + "title": "Support for the opening of low-carbon energy research databases in Europe", + "topic": "LC-SC3-CC-3-2019" +},{ + "projectID": 687614, + "title": "Boosting public sector productivity and innovation through cloud computing services", + "topic": "ICT-08-2015" +},{ + "projectID": 825292, + "title": "Big Data technologies and extreme-scale analytics", + "topic": "ICT-12-2018-2020" +},{ + "projectID": 856728, + "title": "GÉANT Partnership projects (b)", + "topic": "GEANT-2018-b" +},{ + "projectID": 731505, + "title": "Europe Brazil Cable 1", + "topic": "GEANT-CABLE-2015" +},{ + "projectID": 654225, + "title": "e-Infrastructure policy development and international cooperation", + "topic": "INFRASUPP-7-2014" +},{ + "projectID": 765158, + "title": "Innovative Training Networks", + "topic": "MSCA-ITN-2017" +},{ + "projectID": 101017529, + "title": "Increasing the service offer of the EOSC Portal", + "topic": "INFRAEOSC-07-2020" +},{ + "projectID": 653965, + "title": "Provision of core services across e-infrastructures", + "topic": "EINFRA-7-2014" +},{ + "projectID": 856726, + "title": "GÉANT Partnership projects (a)", + "topic": "GEANT-2018-a" +},{ + "projectID": 863353, + "title": "Prototyping new innovative services", + "topic": "INFRAEOSC-02-2019" +},{ + "projectID": 824079, + "title": "Access to commercial services through the EOSC hub", + "topic": "INFRAEOSC-01-2018" +},{ + "projectID": 814416, + "title": "Accelerating the uptake of materials modelling software (IA)", + "topic": "DT-NMBP-09-2018" +},{ + "projectID": 731122, + "title": "Research and Education Networking – GÉANT", + "topic": "GEANT-2016" +},{ + "projectID": 691567, + "title": "GEANT", + "topic": "GEANT" +},{ + "projectID": 732049, + "title": "Technologies for Learning and Skills", + "topic": "ICT-22-2016" +},{ + "projectID": 645402, + "title": "Advanced Cloud Infrastructures and Services", + "topic": "ICT-07-2014" +},{ + "projectID": 645212, + "title": "Smart optical and wireless network technologies", + "topic": "ICT-06-2014" +},{ + "projectID": 820323, + "title": "Preparatory Actions for new FET Flagships", + "topic": "FETFLAG-01-2018" +},{ + "projectID": 882986, + "title": "Human factors, and social, societal, and organisational aspects of border and external security", + "topic": "SU-BES01-2018-2019-2020" +},{ + "projectID": 818308, + "title": "Integrated system innovation in valorising urban biowaste", + "topic": "CE-SFS-25-2018" +},{ + "projectID": 856879, + "title": "Interactive Technologies", + "topic": "ICT-25-2018-2020" +},{ + "projectID": 101037796, + "title": "Testing and demonstrating systemic innovations in support of the Farm-to-Fork Strategy", + "topic": "LC-GD-6-1-2020" +} +] \ No newline at end of file diff --git a/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics_nld.json.gz b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics_nld.json.gz new file mode 100644 index 000000000..f401c3f40 Binary files /dev/null and b/dhp-workflows/dhp-aggregation/src/test/resources/eu/dnetlib/dhp/actionmanager/project/topics_nld.json.gz differ