From ab8fa33028bd9d7a416138e5958880612a33f1f9 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Tue, 3 Sep 2024 17:46:52 +0200 Subject: [PATCH 1/2] pom: Update ph-schematron dependency to latest version We need the bugfixes included in that version. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6e50bc6..ef9d167 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.4.14 3.9.1 4.6.3 - 8.0.0 + 8.0.3 3.1.0 2.0.3 2.3.0 From 027a060f78bcc2523e504381f6666f10c5c102f2 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Thu, 5 Sep 2024 09:48:13 +0200 Subject: [PATCH 2/2] Add new command to run benchmark of Schematron rules (TEDEFO-3637) Use JMH to run the Schematron rules of the SDK being analyzed against a set of large XML notices, and write the results to a JSON file. This allows detecting when a change in the rules makes them slower, by comparing with results from another run. The notices used in the benchmark are included as resources, as we need them to be always the same, and to be large enough to make slowdowns noticeable. So we can't use the notice examples from the SDK being analyzed. --- README.md | 18 +- pom.xml | 29 +- .../ted/eforms/sdk/analysis/CliCommand.java | 8 +- .../sdk/analysis/SchematronBenchmark.java | 95 + src/main/resources/benchmark/notices/16.xml | 45613 ++++++++++ src/main/resources/benchmark/notices/29.xml | 70113 ++++++++++++++++ 6 files changed, 115872 insertions(+), 4 deletions(-) create mode 100644 src/main/java/eu/europa/ted/eforms/sdk/analysis/SchematronBenchmark.java create mode 100644 src/main/resources/benchmark/notices/16.xml create mode 100644 src/main/resources/benchmark/notices/29.xml diff --git a/README.md b/README.md index 493a8b8..874ec12 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ The eForms SDK Analyzer is a command-line application for the static analysis of the content of the eForms SDK. It loads the files from the eForms SDK, and applies various checks and verifications, to try to ensure that their content is correct and consistent. +It can also run a benchmark of the Schematron rules in an eForms SDK, to help detect potential performance issues in those validation rules. + ## Building Requirements: @@ -18,7 +20,9 @@ mvn clean package ## Usage -To run the application, execute the runnable JAR built as described above, indicating the path to the folder containing the eForms-SDK: +### SDK Analysis + +To analyze the content of an eForms SDK, execute the runnable JAR built as described above, indicating the path to the folder containing the eForms SDK: ```shell java -jar target/eforms-sdk-analyzer-1.8.0-SNAPSHOT.jar path/to/eforms-sdk @@ -28,6 +32,18 @@ This will return the exit code 0 if no errors are found, and 1 otherwise. Any error or warning found during the analysis will be logged at the corresponding level. By default, logs go to the standard output. +### Schematron rules benchmark + +To run the benchmark of the Schematron rules in an eForms SDK, execute the runnable JAR built as described above, indicating the path to the folder containing the eForms SDK and the command `benchmark`: + +```shell +java -jar target/eforms-sdk-analyzer-1.8.0-SNAPSHOT.jar path/to/eforms-sdk benchmark +``` + +This will execute the Schematron rules on a few large XML notices included as resources in this project, with an appropriate warm-up and number of iterations. The results are written to a JSON file. + +You can compare those results with the ones from another SDK version, to detect whether the rules have become slower to execute. + ## Contributing ### Adding a check diff --git a/pom.xml b/pom.xml index ef9d167..9eae88c 100644 --- a/pom.xml +++ b/pom.xml @@ -49,6 +49,7 @@ 2.14.1 4.0.0 4.0.4 + 1.37 5.9.2 1.4.14 3.9.1 @@ -164,6 +165,17 @@ + + org.openjdk.jmh + jmh-core + ${jmh.version} + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + provided + ch.qos.logback logback-classic @@ -322,6 +334,14 @@ + + org.openjdk.jmh + jmh-core + + + org.openjdk.jmh + jmh-generator-annprocess + ch.qos.logback logback-classic @@ -411,11 +431,16 @@ maven-compiler-plugin - + info.picocli picocli-codegen ${version.picocli} - + + + org.openjdk.jmh + jmh-generator-annprocess + ${version.jmh} + diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/CliCommand.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/CliCommand.java index 0bd7a89..0ae39e4 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/CliCommand.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/CliCommand.java @@ -30,9 +30,15 @@ public Integer call() throws Exception { return SdkAnalyzer.analyze(sdkRoot); } + @Command(name = "benchmark", mixinStandardHelpOptions = true, + description = "Run benchmark of Schematron rules") + public int runBenchmark() throws Exception { + return SchematronBenchmark.run(sdkRoot); + } + /** * {@link IVersionProvider} implementation that returns version information from the - * picocli-x.x.jar file's {@code /META-INF/MANIFEST.MF} file. + * built JAR file's {@code /META-INF/MANIFEST.MF} file. */ static class ManifestVersionProvider implements IVersionProvider { public String[] getVersion() throws Exception { diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/SchematronBenchmark.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/SchematronBenchmark.java new file mode 100644 index 0000000..a3a5d57 --- /dev/null +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/SchematronBenchmark.java @@ -0,0 +1,95 @@ +package eu.europa.ted.eforms.sdk.analysis; + +import java.io.FileNotFoundException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.text.MessageFormat; + +import javax.xml.transform.Source; +import javax.xml.transform.stream.StreamSource; + +import org.apache.commons.lang3.Validate; +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.Param; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.Setup; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import org.openjdk.jmh.results.format.ResultFormatType; +import org.openjdk.jmh.runner.Runner; +import org.openjdk.jmh.runner.options.Options; +import org.openjdk.jmh.runner.options.OptionsBuilder; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.helger.commons.io.resource.FileSystemResource; +import com.helger.commons.io.resource.IReadableResource; +import com.helger.schematron.ISchematronResource; +import com.helger.schematron.pure.SchematronResourcePure; + +@State(Scope.Benchmark) +public class SchematronBenchmark { + private static final Logger logger = LoggerFactory.getLogger(SchematronBenchmark.class); + + // Path to the root of the eForms SDK, overriden with the path given on the command line + @Param("../eforms-sdk") + public String sdkRootPath; + + // Filenames of XML notices included as resources in this project + @Param({"16.xml", "29.xml"}) + public String noticeFilename; + + private ISchematronResource phSchematron; + + public static int run(final Path sdkRoot) throws Exception { + logger.warn("Benchmarking Schematron rules from SDK under folder [{}]", sdkRoot); + + Validate.notNull(sdkRoot, "Undefined SDK root path"); + if (!Files.isDirectory(sdkRoot)) { + throw new FileNotFoundException(sdkRoot.toString()); + } + + Options opt = new OptionsBuilder() + .include(SchematronBenchmark.class.getSimpleName()) + .param("sdkRootPath", sdkRoot.toString()) + .resultFormat(ResultFormatType.JSON) + .build(); + + new Runner(opt).run(); + + return 0; + } + + @Setup + public void setup() { + SdkLoader sdkLoader = new SdkLoader(Path.of(sdkRootPath)); + + // Use the first set of Schematron rules (dynamic/static) + // They are mostly identical, so it does not make a difference for the benchmark + Path file = sdkLoader.getSchematronFilesPaths().get(0); + IReadableResource schematron = new FileSystemResource(file); + phSchematron = new SchematronResourcePure(schematron); + } + + @Benchmark + @Fork(1) + @Warmup(iterations = 1) + @Measurement(iterations = 3) + @BenchmarkMode(Mode.AverageTime) + public int executeValidation() throws Exception { + + String resourceName = MessageFormat.format("benchmark/notices/{0}", noticeFilename); + InputStream stream = this.getClass().getClassLoader().getResourceAsStream(resourceName); + Validate.notNull(stream, "Notice file not found in resources: " + resourceName); + + Source source = new StreamSource(stream); + phSchematron.applySchematronValidation(source); + + return 0; + } +} diff --git a/src/main/resources/benchmark/notices/16.xml b/src/main/resources/benchmark/notices/16.xml new file mode 100644 index 0000000..bfec3f0 --- /dev/null +++ b/src/main/resources/benchmark/notices/16.xml @@ -0,0 +1,45613 @@ + + + + + + + + 16 + + + + true + + https://www.zenithnovainnovations.com + https://www.zenithnovainnovations.com/info-exchange + + ORG-0001 + + + ZenithNova Innovations + + + ZenithNova Innovations 45 Future Boulevard New Horizons, CA 90210 United States of America + ZenithNova Innovations 45 Future Boulevard New Horizons, CA 90210 United States of America + Future Solutions Division + New Horizons, CA + 90210 + EL303 + + ZenithNova Innovations 45 Future Boulevard New Horizons, CA 90210 United States of America + + + GRC + + + + ABE + + + Info + +1 (555) 123-4567 + +1 (555) 123-4567 + info@zenithnovainnovations.com + + + + https://www.zenithnovainnovations.com/contact-us/katerina-lisa + https://www.zenithnovainnovations.com/info-exchange/katerina-lisa + + TPO-0001 + + + Katerina Lisa + + + Future Solutions Division + + + + + + + + + 2.3 + eforms-sdk-1.10 + 0491ebbe-4e45-4c38-8a4e-722a5159d809 + b47fd31a-a9e4-4680-a50d-0e577ffcbdf3 + 2023-12-14Z + 07:37:54Z + 01 + 32014L0024 + cn-standard + ENG + + https://duckduckgo.com + + pub-undert-cga + + + rcr + + + + ORG-0001 + + + + + + + corruption + If any of the participants are corrupted then they are excluded from the tendering process + + + + + open + + + Poor Things SDK 1.10 + Poor Things is a 2023 surrealist[3] steampunk[4][5] black comedy film directed by Yorgos Lanthimos from a screenplay by Tony McNamara.[6] It is based on the 1992 novel of the same name by Alasdair Gray, and stars Emma Stone alongside Mark Ruffalo, Willem Dafoe, Ramy Youssef, Christopher Abbott, and Jerrod Carmichael. The plot follows a young Victorian woman who, after being crudely resurrected by a scientist following her suicide, runs off with a debauched lawyer to embark on an odyssey of self-discovery and sexual liberation. +Development on the film began as early as 2009, when Lanthimos visited Gray in his Scotland home to acquire the rights to the novel. Following a period in development hell, the director revisited Poor Things while filming The Favourite (2018), which starred Stone, and approached her with the lead role. The remaining cast joined the project in 2021, with principal photography occurring in Hungary from August to December of that year. +Poor Things premiered at the 80th Venice International Film Festival on September 1, 2023, where it won the Golden Lion. The film is scheduled to be theatrically released by Searchlight Pictures in the United States on December 8, 2023, and in the United Kingdom on January 12, 2024. + services + + 50000000 + + + + LOT-0001 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0001 + Poor Things SDK 1.10 + Premise +A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] +Development +Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] +While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] +Pre-production +Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + services + + 75121000 + + + 10 + + + + + LOT-0002 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0002 + Poor Things SDK 1.10 + Premise +A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] +Development +Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] +While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] +Pre-production +Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + services + + 75121000 + + + 10 + + + + + LOT-0003 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0003 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0004 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0004 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0005 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0005 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0006 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0006 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0007 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0007 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0008 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0008 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0009 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0009 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0010 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0010 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0011 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0011 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0012 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0012 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0013 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0013 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0014 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0014 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0015 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0015 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0016 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0016 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0017 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0017 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0018 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0018 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0019 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0019 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0020 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0020 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0021 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0021 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0022 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0022 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0023 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0023 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0024 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0024 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0025 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0025 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0026 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0026 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0027 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0027 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0028 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0028 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0029 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0029 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0030 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0030 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0031 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0031 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0032 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0032 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0033 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0033 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0034 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0034 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0035 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0035 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0036 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0036 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0037 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0037 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0038 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0038 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0039 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0039 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0040 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0040 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0041 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0041 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0042 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0042 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0043 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0043 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0044 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0044 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0045 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0045 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0046 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0046 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0047 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0047 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0048 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0048 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0049 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0049 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0050 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0050 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0051 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0051 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0052 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0052 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0053 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0053 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0054 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0054 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0055 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0055 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0056 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0056 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0057 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0057 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0058 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0058 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0059 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0059 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0060 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0060 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0061 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0061 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0062 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0062 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0063 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0063 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0064 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0064 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0065 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0065 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0066 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0066 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0067 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0067 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0068 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0068 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0069 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0069 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0070 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0070 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0071 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0071 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0072 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0072 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0073 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0073 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0074 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0074 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0075 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0075 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0076 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0076 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0077 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0077 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0078 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0078 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0079 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0079 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0080 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0080 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0081 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0081 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0082 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0082 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0083 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0083 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0084 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0084 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0085 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0085 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0086 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0086 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0087 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0087 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0088 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0088 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0089 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0089 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0090 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0090 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0091 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0091 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0092 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0092 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0093 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0093 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0094 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0094 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0095 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0095 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0096 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0096 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0097 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0097 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0098 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0098 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0099 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0099 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0100 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0100 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0101 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0101 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0102 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0102 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0103 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0103 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0104 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0104 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0105 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0105 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0106 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0106 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0107 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0107 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0108 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0108 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0109 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0109 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0110 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0110 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0111 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0111 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0112 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0112 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0113 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0113 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0114 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0114 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0115 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0115 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0116 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0116 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0117 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0117 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0118 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0118 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0119 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0119 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0120 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0120 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0121 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0121 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0122 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0122 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0123 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0123 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0124 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0124 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0125 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0125 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0126 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0126 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0127 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0127 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0128 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0128 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0129 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0129 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0130 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0130 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0131 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0131 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0132 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0132 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0133 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0133 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0134 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0134 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0135 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0135 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0136 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0136 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0137 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0137 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0138 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0138 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0139 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0139 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0140 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0140 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0141 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0141 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0142 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0142 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0143 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0143 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0144 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0144 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0145 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0145 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0146 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0146 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0147 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0147 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0148 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0148 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0149 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0149 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0150 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0150 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0151 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0151 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0152 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0152 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0153 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0153 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0154 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0154 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0155 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0155 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0156 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0156 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0157 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0157 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0158 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0158 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0159 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0159 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0160 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0160 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0161 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0161 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0162 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0162 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0163 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0163 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0164 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0164 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0165 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0165 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0166 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0166 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0167 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0167 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0168 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0168 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0169 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0169 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0170 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0170 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0171 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0171 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0172 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0172 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0173 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0173 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0174 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0174 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0175 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0175 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0176 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0176 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0177 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0177 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0178 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0178 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0179 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0179 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0180 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0180 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0181 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0181 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0182 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0182 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0183 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0183 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0184 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0184 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0185 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0185 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0186 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0186 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0187 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0187 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0188 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0188 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0189 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0189 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0190 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0190 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0191 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0191 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0192 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0192 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0193 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0193 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0194 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0194 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0195 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0195 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0196 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0196 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0197 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0197 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0198 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0198 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0199 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0199 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0200 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0200 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0201 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0201 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0202 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0202 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0203 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0203 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0204 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0204 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0205 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0205 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0206 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0206 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0207 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0207 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0208 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0208 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0209 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0209 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0210 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0210 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0211 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0211 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0212 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0212 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0213 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0213 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0214 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0214 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0215 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0215 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0216 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0216 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0217 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0217 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0218 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0218 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0219 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0219 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0220 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0220 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0221 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0221 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0222 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0222 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0223 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0223 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0224 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0224 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0225 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0225 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0226 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0226 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0227 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0227 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0228 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0228 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0229 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0229 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0230 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0230 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0231 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0231 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0232 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0232 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0233 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0233 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0234 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0234 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0235 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0235 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0236 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0236 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0237 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0237 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0238 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0238 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0239 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0239 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0240 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0240 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0241 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0241 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0242 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0242 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0243 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0243 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0244 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0244 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0245 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0245 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0246 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0246 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0247 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0247 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0248 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0248 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0249 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0249 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0250 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0250 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0251 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0251 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0252 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0252 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0253 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0253 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0254 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0254 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0255 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0255 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0256 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0256 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0257 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0257 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0258 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0258 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0259 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0259 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0260 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0260 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0261 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0261 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0262 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0262 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0263 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0263 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0264 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0264 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0265 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0265 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0266 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0266 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0267 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0267 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0268 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0268 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0269 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0269 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0270 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0270 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0271 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0271 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0272 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0272 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0273 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0273 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0274 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0274 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0275 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0275 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0276 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0276 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0277 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0277 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0278 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0278 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0279 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0279 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0280 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0280 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0281 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0281 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0282 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0282 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0283 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0283 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0284 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0284 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0285 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0285 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0286 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0286 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0287 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0287 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0288 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0288 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0289 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0289 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0290 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0290 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0291 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0291 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0292 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0292 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0293 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0293 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0294 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0294 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0295 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0295 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0296 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0296 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0297 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0297 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0298 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0298 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0299 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0299 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0300 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0300 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0301 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0301 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0302 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0302 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0303 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0303 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0304 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0304 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0305 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0305 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0306 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0306 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0307 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0307 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0308 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0308 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0309 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0309 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0310 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0310 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0311 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0311 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0312 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0312 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0313 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0313 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0314 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0314 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0315 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0315 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0316 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0316 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0317 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0317 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0318 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0318 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0319 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0319 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0320 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0320 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0321 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0321 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0322 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0322 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0323 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0323 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0324 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0324 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0325 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0325 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0326 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0326 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0327 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0327 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0328 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0328 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0329 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0329 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0330 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0330 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0331 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0331 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0332 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0332 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0333 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0333 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0334 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0334 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0335 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0335 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0336 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0336 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0337 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0337 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0338 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0338 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0339 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0339 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0340 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0340 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0341 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0341 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0342 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0342 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0343 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0343 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0344 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0344 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0345 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0345 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0346 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0346 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0347 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0347 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0348 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0348 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0349 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0349 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0350 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0350 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0351 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0351 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0352 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0352 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0353 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0353 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0354 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0354 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0355 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0355 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0356 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0356 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0357 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0357 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0358 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0358 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0359 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0359 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0360 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0360 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0361 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0361 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0362 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0362 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0363 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0363 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0364 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0364 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0365 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0365 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0366 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0366 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0367 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0367 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0368 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0368 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0369 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0369 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0370 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0370 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0371 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0371 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0372 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0372 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0373 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0373 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0374 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0374 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0375 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0375 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0376 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0376 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0377 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0377 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0378 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0378 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0379 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0379 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0380 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0380 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0381 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0381 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0382 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0382 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0383 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0383 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0384 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0384 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0385 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0385 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0386 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0386 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0387 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0387 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0388 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0388 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0389 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0389 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0390 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0390 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0391 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0391 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0392 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0392 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0393 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0393 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0394 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0394 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0395 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0395 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0396 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0396 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0397 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0397 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0398 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0398 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0399 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0399 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0400 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0400 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0401 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0401 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0402 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0402 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0403 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0403 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0404 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0404 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0405 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0405 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0406 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0406 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0407 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0407 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0408 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0408 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0409 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0409 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0410 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0410 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0411 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0411 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0412 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0412 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0413 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0413 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0414 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0414 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0415 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0415 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0416 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0416 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0417 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0417 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0418 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0418 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0419 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0419 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0420 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0420 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0421 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0421 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0422 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0422 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0423 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0423 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0424 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0424 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0425 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0425 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0426 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0426 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0427 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0427 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0428 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0428 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0429 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0429 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0430 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0430 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0431 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0431 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0432 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0432 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0433 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0433 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0434 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0434 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0435 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0435 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0436 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0436 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0437 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0437 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0438 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0438 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0439 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0439 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0440 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0440 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0441 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0441 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0442 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0442 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0443 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0443 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0444 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0444 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0445 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0445 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0446 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0446 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0447 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0447 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0448 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0448 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0449 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0449 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0450 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0450 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0451 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0451 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0452 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0452 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0453 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0453 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0454 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0454 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0455 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0455 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0456 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0456 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0457 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0457 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0458 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0458 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0459 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0459 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0460 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0460 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0461 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0461 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0462 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0462 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0463 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0463 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0464 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0464 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0465 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0465 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0466 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0466 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0467 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0467 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0468 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0468 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0469 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0469 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0470 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0470 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0471 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0471 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0472 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0472 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0473 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0473 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0474 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0474 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0475 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0475 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0476 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0476 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0477 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0477 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0478 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0478 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0479 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0479 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0480 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0480 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0481 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0481 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0482 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0482 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0483 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0483 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0484 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0484 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0485 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0485 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0486 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0486 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0487 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0487 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0488 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0488 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0489 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0489 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0490 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0490 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0491 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0491 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0492 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0492 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0493 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0493 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0494 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0494 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0495 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0495 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0496 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0496 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0497 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0497 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0498 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0498 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0499 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0499 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + + LOT-0500 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + not-known + + + not-allowed + + + required + + + + + TPO-0001 + + + + + ELL + + + false + true + + + + not-allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + fa-mix + + + dps-nlist + + + + ABE LOT-0500 + Poor Things SDK 1.10 + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + 10 + + + + \ No newline at end of file diff --git a/src/main/resources/benchmark/notices/29.xml b/src/main/resources/benchmark/notices/29.xml new file mode 100644 index 0000000..ec8dddf --- /dev/null +++ b/src/main/resources/benchmark/notices/29.xml @@ -0,0 +1,70113 @@ + + + + + + + 2024-03-22Z + 15:29:59Z + + 1000000 + 1000000 + + RES-0001 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0001 + + + + RES-0002 + selec-w + false + + TEN-0001 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0001 + + + LOT-0002 + + + + RES-0003 + selec-w + false + + TEN-0002 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0002 + + + LOT-0003 + + + + RES-0004 + selec-w + false + + TEN-0003 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0003 + + + LOT-0004 + + + + RES-0005 + selec-w + false + + TEN-0004 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0004 + + + LOT-0005 + + + + RES-0006 + selec-w + false + + TEN-0005 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0005 + + + LOT-0006 + + + + RES-0007 + selec-w + false + + TEN-0006 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0006 + + + LOT-0007 + + + + RES-0008 + selec-w + false + + TEN-0007 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0007 + + + LOT-0008 + + + + RES-0009 + selec-w + false + + TEN-0008 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0008 + + + LOT-0009 + + + + RES-0010 + selec-w + false + + TEN-0009 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0009 + + + LOT-0010 + + + + RES-0011 + selec-w + false + + TEN-0010 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0010 + + + LOT-0011 + + + + RES-0012 + selec-w + false + + TEN-0011 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0011 + + + LOT-0012 + + + + RES-0013 + selec-w + false + + TEN-0012 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0012 + + + LOT-0013 + + + + RES-0014 + selec-w + false + + TEN-0013 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0013 + + + LOT-0014 + + + + RES-0015 + selec-w + false + + TEN-0014 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0014 + + + LOT-0015 + + + + RES-0016 + selec-w + false + + TEN-0015 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0015 + + + LOT-0016 + + + + RES-0017 + selec-w + false + + TEN-0016 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0016 + + + LOT-0017 + + + + RES-0018 + selec-w + false + + TEN-0017 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0017 + + + LOT-0018 + + + + RES-0019 + selec-w + false + + TEN-0018 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0018 + + + LOT-0019 + + + + RES-0020 + selec-w + false + + TEN-0019 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0019 + + + LOT-0020 + + + + RES-0021 + selec-w + false + + TEN-0020 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0020 + + + LOT-0021 + + + + RES-0022 + selec-w + false + + TEN-0021 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0021 + + + LOT-0022 + + + + RES-0023 + selec-w + false + + TEN-0022 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0022 + + + LOT-0023 + + + + RES-0024 + selec-w + false + + TEN-0023 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0023 + + + LOT-0024 + + + + RES-0025 + selec-w + false + + TEN-0024 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0024 + + + LOT-0025 + + + + RES-0026 + selec-w + false + + TEN-0025 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0025 + + + LOT-0026 + + + + RES-0027 + selec-w + false + + TEN-0026 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0026 + + + LOT-0027 + + + + RES-0028 + selec-w + false + + TEN-0027 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0027 + + + LOT-0028 + + + + RES-0029 + selec-w + false + + TEN-0028 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0028 + + + LOT-0029 + + + + RES-0030 + selec-w + false + + TEN-0029 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0029 + + + LOT-0030 + + + + RES-0031 + selec-w + false + + TEN-0030 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0030 + + + LOT-0031 + + + + RES-0032 + selec-w + false + + TEN-0031 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0031 + + + LOT-0032 + + + + RES-0033 + clos-nw + + all-rej + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + LOT-0033 + + + + RES-0034 + selec-w + false + + TEN-0032 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0032 + + + LOT-0034 + + + + RES-0035 + selec-w + false + + TEN-0033 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0033 + + + LOT-0035 + + + + RES-0036 + selec-w + false + + TEN-0034 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0034 + + + LOT-0036 + + + + RES-0037 + selec-w + false + + TEN-0035 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0035 + + + LOT-0037 + + + + RES-0038 + selec-w + false + + TEN-0036 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0036 + + + LOT-0038 + + + + RES-0039 + selec-w + false + + TEN-0037 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0037 + + + LOT-0039 + + + + RES-0040 + selec-w + false + + TEN-0038 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0038 + + + LOT-0040 + + + + RES-0041 + selec-w + false + + TEN-0039 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0039 + + + LOT-0041 + + + + RES-0042 + selec-w + false + + TEN-0040 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0040 + + + LOT-0042 + + + + RES-0043 + selec-w + false + + TEN-0041 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0041 + + + LOT-0043 + + + + RES-0044 + selec-w + false + + TEN-0042 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0042 + + + LOT-0044 + + + + RES-0045 + selec-w + false + + TEN-0043 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0043 + + + LOT-0045 + + + + RES-0046 + selec-w + false + + TEN-0044 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0044 + + + LOT-0046 + + + + RES-0047 + selec-w + false + + TEN-0045 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0045 + + + LOT-0047 + + + + RES-0048 + selec-w + false + + TEN-0046 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0046 + + + LOT-0048 + + + + RES-0049 + selec-w + false + + TEN-0047 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0047 + + + LOT-0049 + + + + RES-0050 + selec-w + false + + TEN-0048 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0048 + + + LOT-0050 + + + + RES-0051 + selec-w + false + + TEN-0049 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0049 + + + LOT-0051 + + + + RES-0052 + selec-w + false + + TEN-0050 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0050 + + + LOT-0052 + + + + RES-0053 + selec-w + false + + TEN-0051 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0051 + + + LOT-0053 + + + + RES-0054 + selec-w + false + + TEN-0052 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0052 + + + LOT-0054 + + + + RES-0055 + selec-w + false + + TEN-0053 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0053 + + + LOT-0055 + + + + RES-0056 + selec-w + false + + TEN-0054 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0054 + + + LOT-0056 + + + + RES-0057 + selec-w + false + + TEN-0055 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0055 + + + LOT-0057 + + + + RES-0058 + selec-w + false + + TEN-0056 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0056 + + + LOT-0058 + + + + RES-0059 + selec-w + false + + TEN-0057 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0057 + + + LOT-0059 + + + + RES-0060 + selec-w + false + + TEN-0058 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0058 + + + LOT-0060 + + + + RES-0061 + selec-w + false + + TEN-0059 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0059 + + + LOT-0061 + + + + RES-0062 + selec-w + false + + TEN-0060 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0060 + + + LOT-0062 + + + + RES-0063 + selec-w + false + + TEN-0061 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0061 + + + LOT-0063 + + + + RES-0064 + selec-w + false + + TEN-0062 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0062 + + + LOT-0064 + + + + RES-0065 + selec-w + false + + TEN-0063 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0063 + + + LOT-0065 + + + + RES-0066 + selec-w + false + + TEN-0064 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0064 + + + LOT-0066 + + + + RES-0067 + selec-w + false + + TEN-0065 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0065 + + + LOT-0067 + + + + RES-0068 + selec-w + false + + TEN-0066 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0066 + + + LOT-0068 + + + + RES-0069 + selec-w + false + + TEN-0067 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0067 + + + LOT-0069 + + + + RES-0070 + selec-w + false + + TEN-0068 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0068 + + + LOT-0070 + + + + RES-0071 + selec-w + false + + TEN-0069 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0069 + + + LOT-0071 + + + + RES-0072 + selec-w + false + + TEN-0070 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0070 + + + LOT-0072 + + + + RES-0073 + selec-w + false + + TEN-0071 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0071 + + + LOT-0073 + + + + RES-0074 + selec-w + false + + TEN-0072 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0072 + + + LOT-0074 + + + + RES-0075 + selec-w + false + + TEN-0073 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0073 + + + LOT-0075 + + + + RES-0076 + selec-w + false + + TEN-0074 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0074 + + + LOT-0076 + + + + RES-0077 + selec-w + false + + TEN-0075 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0075 + + + LOT-0077 + + + + RES-0078 + selec-w + false + + TEN-0076 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0076 + + + LOT-0078 + + + + RES-0079 + selec-w + false + + TEN-0077 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0077 + + + LOT-0079 + + + + RES-0080 + selec-w + false + + TEN-0078 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0078 + + + LOT-0080 + + + + RES-0081 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0081 + + + + RES-0082 + selec-w + false + + TEN-0079 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0079 + + + LOT-0082 + + + + RES-0083 + selec-w + false + + TEN-0080 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0080 + + + LOT-0083 + + + + RES-0084 + selec-w + false + + TEN-0081 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0081 + + + LOT-0084 + + + + RES-0085 + selec-w + false + + TEN-0082 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0082 + + + LOT-0085 + + + + RES-0086 + selec-w + false + + TEN-0083 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0083 + + + LOT-0086 + + + + RES-0087 + selec-w + false + + TEN-0084 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0084 + + + LOT-0087 + + + + RES-0088 + selec-w + false + + TEN-0085 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0085 + + + LOT-0088 + + + + RES-0089 + selec-w + false + + TEN-0086 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0086 + + + LOT-0089 + + + + RES-0090 + selec-w + false + + TEN-0087 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0087 + + + LOT-0090 + + + + RES-0091 + selec-w + false + + TEN-0088 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0088 + + + LOT-0091 + + + + RES-0092 + selec-w + false + + TEN-0089 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0089 + + + LOT-0092 + + + + RES-0093 + selec-w + false + + TEN-0090 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0090 + + + LOT-0093 + + + + RES-0094 + selec-w + false + + TEN-0091 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0091 + + + LOT-0094 + + + + RES-0095 + selec-w + false + + TEN-0092 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0092 + + + LOT-0095 + + + + RES-0096 + selec-w + false + + TEN-0093 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0093 + + + LOT-0096 + + + + RES-0097 + selec-w + false + + TEN-0094 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0094 + + + LOT-0097 + + + + RES-0098 + selec-w + false + + TEN-0095 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0095 + + + LOT-0098 + + + + RES-0099 + selec-w + false + + TEN-0096 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 3 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0096 + + + LOT-0099 + + + + RES-0100 + selec-w + false + + TEN-0097 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0097 + + + LOT-0100 + + + + RES-0101 + selec-w + false + + TEN-0098 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0098 + + + LOT-0101 + + + + RES-0102 + selec-w + false + + TEN-0099 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0099 + + + LOT-0102 + + + + RES-0103 + selec-w + false + + TEN-0100 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0100 + + + LOT-0103 + + + + RES-0104 + selec-w + false + + TEN-0101 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0101 + + + LOT-0104 + + + + RES-0105 + selec-w + false + + TEN-0102 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0102 + + + LOT-0105 + + + + RES-0106 + selec-w + false + + TEN-0103 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0103 + + + LOT-0106 + + + + RES-0107 + selec-w + false + + TEN-0104 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0104 + + + LOT-0107 + + + + RES-0108 + selec-w + false + + TEN-0105 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0105 + + + LOT-0108 + + + + RES-0109 + selec-w + false + + TEN-0106 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0106 + + + LOT-0109 + + + + RES-0110 + selec-w + false + + TEN-0107 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0107 + + + LOT-0110 + + + + RES-0111 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0111 + + + + RES-0112 + selec-w + false + + TEN-0108 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0108 + + + LOT-0112 + + + + RES-0113 + selec-w + false + + TEN-0109 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0109 + + + LOT-0113 + + + + RES-0114 + selec-w + false + + TEN-0110 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0110 + + + LOT-0114 + + + + RES-0115 + selec-w + false + + TEN-0111 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0111 + + + LOT-0115 + + + + RES-0116 + selec-w + false + + TEN-0112 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0112 + + + LOT-0116 + + + + RES-0117 + selec-w + false + + TEN-0113 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0113 + + + LOT-0117 + + + + RES-0118 + selec-w + false + + TEN-0114 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0114 + + + LOT-0118 + + + + RES-0119 + selec-w + false + + TEN-0115 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0115 + + + LOT-0119 + + + + RES-0120 + selec-w + false + + TEN-0116 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0116 + + + LOT-0120 + + + + RES-0121 + selec-w + false + + TEN-0117 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0117 + + + LOT-0121 + + + + RES-0122 + selec-w + false + + TEN-0118 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0118 + + + LOT-0122 + + + + RES-0123 + selec-w + false + + TEN-0119 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0119 + + + LOT-0123 + + + + RES-0124 + selec-w + false + + TEN-0120 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0120 + + + LOT-0124 + + + + RES-0125 + selec-w + false + + TEN-0121 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0121 + + + LOT-0125 + + + + RES-0126 + selec-w + false + + TEN-0122 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0122 + + + LOT-0126 + + + + RES-0127 + selec-w + false + + TEN-0123 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0123 + + + LOT-0127 + + + + RES-0128 + selec-w + false + + TEN-0124 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0124 + + + LOT-0128 + + + + RES-0129 + selec-w + false + + TEN-0125 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0125 + + + LOT-0129 + + + + RES-0130 + selec-w + false + + TEN-0126 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0126 + + + LOT-0130 + + + + RES-0131 + selec-w + false + + TEN-0127 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0127 + + + LOT-0131 + + + + RES-0132 + selec-w + false + + TEN-0128 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0128 + + + LOT-0132 + + + + RES-0133 + selec-w + false + + TEN-0129 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0129 + + + LOT-0133 + + + + RES-0134 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0134 + + + + RES-0135 + selec-w + false + + TEN-0130 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0130 + + + LOT-0135 + + + + RES-0136 + selec-w + false + + TEN-0131 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0131 + + + LOT-0136 + + + + RES-0137 + selec-w + false + + TEN-0132 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0132 + + + LOT-0137 + + + + RES-0138 + selec-w + false + + TEN-0133 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0133 + + + LOT-0138 + + + + RES-0139 + selec-w + false + + TEN-0134 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0134 + + + LOT-0139 + + + + RES-0140 + selec-w + false + + TEN-0135 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0135 + + + LOT-0140 + + + + RES-0141 + selec-w + false + + TEN-0136 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0136 + + + LOT-0141 + + + + RES-0142 + selec-w + false + + TEN-0137 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0137 + + + LOT-0142 + + + + RES-0143 + selec-w + false + + TEN-0138 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0138 + + + LOT-0143 + + + + RES-0144 + selec-w + false + + TEN-0139 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0139 + + + LOT-0144 + + + + RES-0145 + selec-w + false + + TEN-0140 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0140 + + + LOT-0145 + + + + RES-0146 + selec-w + false + + TEN-0141 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0141 + + + LOT-0146 + + + + RES-0147 + selec-w + false + + TEN-0142 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0142 + + + LOT-0147 + + + + RES-0148 + selec-w + false + + TEN-0143 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0143 + + + LOT-0148 + + + + RES-0149 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0149 + + + + RES-0150 + selec-w + false + + TEN-0144 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0144 + + + LOT-0150 + + + + RES-0151 + selec-w + false + + TEN-0145 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0145 + + + LOT-0151 + + + + RES-0152 + selec-w + false + + TEN-0146 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0146 + + + LOT-0152 + + + + RES-0153 + selec-w + false + + TEN-0147 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0147 + + + LOT-0153 + + + + RES-0154 + selec-w + false + + TEN-0148 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0148 + + + LOT-0154 + + + + RES-0155 + selec-w + false + + TEN-0149 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0149 + + + LOT-0155 + + + + RES-0156 + selec-w + false + + TEN-0150 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0150 + + + LOT-0156 + + + + RES-0157 + selec-w + false + + TEN-0151 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0151 + + + LOT-0157 + + + + RES-0158 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0158 + + + + RES-0159 + selec-w + false + + TEN-0152 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0152 + + + LOT-0159 + + + + RES-0160 + selec-w + false + + TEN-0153 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0153 + + + LOT-0160 + + + + RES-0161 + selec-w + false + + TEN-0154 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0154 + + + LOT-0161 + + + + RES-0162 + selec-w + false + + TEN-0155 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0155 + + + LOT-0162 + + + + RES-0163 + selec-w + false + + TEN-0156 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0156 + + + LOT-0163 + + + + RES-0164 + selec-w + false + + TEN-0157 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0157 + + + LOT-0164 + + + + RES-0165 + selec-w + false + + TEN-0158 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0158 + + + LOT-0165 + + + + RES-0166 + selec-w + false + + TEN-0159 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0159 + + + LOT-0166 + + + + RES-0167 + selec-w + false + + TEN-0160 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0160 + + + LOT-0167 + + + + RES-0168 + selec-w + false + + TEN-0161 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0161 + + + LOT-0168 + + + + RES-0169 + selec-w + false + + TEN-0162 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0162 + + + LOT-0169 + + + + RES-0170 + selec-w + false + + TEN-0163 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0163 + + + LOT-0170 + + + + RES-0171 + selec-w + false + + TEN-0164 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0164 + + + LOT-0171 + + + + RES-0172 + selec-w + false + + TEN-0165 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0165 + + + LOT-0172 + + + + RES-0173 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0173 + + + + RES-0174 + selec-w + false + + TEN-0166 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0166 + + + LOT-0174 + + + + RES-0175 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0175 + + + + RES-0176 + selec-w + false + + TEN-0167 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0167 + + + LOT-0176 + + + + RES-0177 + selec-w + false + + TEN-0168 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0168 + + + LOT-0177 + + + + RES-0178 + selec-w + false + + TEN-0169 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0169 + + + LOT-0178 + + + + RES-0179 + selec-w + false + + TEN-0170 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0170 + + + LOT-0179 + + + + RES-0180 + selec-w + false + + TEN-0171 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0171 + + + LOT-0180 + + + + RES-0181 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0181 + + + + RES-0182 + selec-w + false + + TEN-0172 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0172 + + + LOT-0182 + + + + RES-0183 + selec-w + false + + TEN-0173 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0173 + + + LOT-0183 + + + + RES-0184 + selec-w + false + + TEN-0174 + + + 10450 + 10450 + + + tenders + 6 + + + t-sme + 4 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 3 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 6 + + + CON-0174 + + + LOT-0184 + + + + RES-0185 + selec-w + false + + TEN-0175 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0175 + + + LOT-0185 + + + + RES-0186 + selec-w + false + + TEN-0176 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0176 + + + LOT-0186 + + + + RES-0187 + selec-w + false + + TEN-0177 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0177 + + + LOT-0187 + + + + RES-0188 + selec-w + false + + TEN-0178 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0178 + + + LOT-0188 + + + + RES-0189 + selec-w + false + + TEN-0179 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0179 + + + LOT-0189 + + + + RES-0190 + selec-w + false + + TEN-0180 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0180 + + + LOT-0190 + + + + RES-0191 + selec-w + false + + TEN-0181 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0181 + + + LOT-0191 + + + + RES-0192 + selec-w + false + + TEN-0182 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0182 + + + LOT-0192 + + + + RES-0193 + selec-w + false + + TEN-0183 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0183 + + + LOT-0193 + + + + RES-0194 + selec-w + false + + TEN-0184 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0184 + + + LOT-0194 + + + + RES-0195 + selec-w + false + + TEN-0185 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0185 + + + LOT-0195 + + + + RES-0196 + selec-w + false + + TEN-0186 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0186 + + + LOT-0196 + + + + RES-0197 + selec-w + false + + TEN-0187 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0187 + + + LOT-0197 + + + + RES-0198 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0198 + + + + RES-0199 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0199 + + + + RES-0200 + selec-w + false + + TEN-0188 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0188 + + + LOT-0200 + + + + RES-0201 + selec-w + false + + TEN-0189 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0189 + + + LOT-0201 + + + + RES-0202 + selec-w + false + + TEN-0190 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0190 + + + LOT-0202 + + + + RES-0203 + selec-w + false + + TEN-0191 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0191 + + + LOT-0203 + + + + RES-0204 + selec-w + false + + TEN-0192 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0192 + + + LOT-0204 + + + + RES-0205 + selec-w + false + + TEN-0193 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0193 + + + LOT-0205 + + + + RES-0206 + selec-w + false + + TEN-0194 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0194 + + + LOT-0206 + + + + RES-0207 + selec-w + false + + TEN-0195 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0195 + + + LOT-0207 + + + + RES-0208 + selec-w + false + + TEN-0196 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0196 + + + LOT-0208 + + + + RES-0209 + selec-w + false + + TEN-0197 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0197 + + + LOT-0209 + + + + RES-0210 + selec-w + false + + TEN-0198 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0198 + + + LOT-0210 + + + + RES-0211 + selec-w + false + + TEN-0199 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0199 + + + LOT-0211 + + + + RES-0212 + selec-w + false + + TEN-0200 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0200 + + + LOT-0212 + + + + RES-0213 + selec-w + false + + TEN-0201 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0201 + + + LOT-0213 + + + + RES-0214 + selec-w + false + + TEN-0202 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0202 + + + LOT-0214 + + + + RES-0215 + selec-w + false + + TEN-0203 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0203 + + + LOT-0215 + + + + RES-0216 + selec-w + false + + TEN-0204 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0204 + + + LOT-0216 + + + + RES-0217 + selec-w + false + + TEN-0205 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 3 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0205 + + + LOT-0217 + + + + RES-0218 + selec-w + false + + TEN-0206 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0206 + + + LOT-0218 + + + + RES-0219 + selec-w + false + + TEN-0207 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0207 + + + LOT-0219 + + + + RES-0220 + selec-w + false + + TEN-0208 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0208 + + + LOT-0220 + + + + RES-0221 + selec-w + false + + TEN-0209 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0209 + + + LOT-0221 + + + + RES-0222 + selec-w + false + + TEN-0210 + + + 10450 + 10450 + + + tenders + 7 + + + t-sme + 5 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 4 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 7 + + + CON-0210 + + + LOT-0222 + + + + RES-0223 + selec-w + false + + TEN-0211 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0211 + + + LOT-0223 + + + + RES-0224 + selec-w + false + + TEN-0212 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0212 + + + LOT-0224 + + + + RES-0225 + selec-w + false + + TEN-0213 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0213 + + + LOT-0225 + + + + RES-0226 + selec-w + false + + TEN-0214 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0214 + + + LOT-0226 + + + + RES-0227 + selec-w + false + + TEN-0215 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0215 + + + LOT-0227 + + + + RES-0228 + selec-w + false + + TEN-0216 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0216 + + + LOT-0228 + + + + RES-0229 + selec-w + false + + TEN-0217 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0217 + + + LOT-0229 + + + + RES-0230 + selec-w + false + + TEN-0218 + + + 10450 + 10450 + + + tenders + 5 + + + t-sme + 3 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 5 + + + CON-0218 + + + LOT-0230 + + + + RES-0231 + selec-w + false + + TEN-0219 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0219 + + + LOT-0231 + + + + RES-0232 + selec-w + false + + TEN-0220 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0220 + + + LOT-0232 + + + + RES-0233 + clos-nw + + all-rej + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + LOT-0233 + + + + RES-0234 + selec-w + false + + TEN-0221 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0221 + + + LOT-0234 + + + + RES-0235 + selec-w + false + + TEN-0222 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0222 + + + LOT-0235 + + + + RES-0236 + selec-w + false + + TEN-0223 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0223 + + + LOT-0236 + + + + RES-0237 + selec-w + false + + TEN-0224 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0224 + + + LOT-0237 + + + + RES-0238 + selec-w + false + + TEN-0225 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0225 + + + LOT-0238 + + + + RES-0239 + selec-w + false + + TEN-0226 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0226 + + + LOT-0239 + + + + RES-0240 + selec-w + false + + TEN-0227 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0227 + + + LOT-0240 + + + + RES-0241 + selec-w + false + + TEN-0228 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0228 + + + LOT-0241 + + + + RES-0242 + selec-w + false + + TEN-0229 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0229 + + + LOT-0242 + + + + RES-0243 + selec-w + false + + TEN-0230 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0230 + + + LOT-0243 + + + + RES-0244 + selec-w + false + + TEN-0231 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0231 + + + LOT-0244 + + + + RES-0245 + selec-w + false + + TEN-0232 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0232 + + + LOT-0245 + + + + RES-0246 + selec-w + false + + TEN-0233 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0233 + + + LOT-0246 + + + + RES-0247 + selec-w + false + + TEN-0234 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0234 + + + LOT-0247 + + + + RES-0248 + selec-w + false + + TEN-0235 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0235 + + + LOT-0248 + + + + RES-0249 + selec-w + false + + TEN-0236 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0236 + + + LOT-0249 + + + + RES-0250 + selec-w + false + + TEN-0237 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0237 + + + LOT-0250 + + + + RES-0251 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0251 + + + + RES-0252 + selec-w + false + + TEN-0238 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0238 + + + LOT-0252 + + + + RES-0253 + selec-w + false + + TEN-0239 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0239 + + + LOT-0253 + + + + RES-0254 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0254 + + + + RES-0255 + selec-w + false + + TEN-0240 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 2 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0240 + + + LOT-0255 + + + + RES-0256 + selec-w + false + + TEN-0241 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0241 + + + LOT-0256 + + + + RES-0257 + selec-w + false + + TEN-0242 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0242 + + + LOT-0257 + + + + RES-0258 + selec-w + false + + TEN-0243 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0243 + + + LOT-0258 + + + + RES-0259 + selec-w + false + + TEN-0244 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0244 + + + LOT-0259 + + + + RES-0260 + selec-w + false + + TEN-0245 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0245 + + + LOT-0260 + + + + RES-0261 + selec-w + false + + TEN-0246 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0246 + + + LOT-0261 + + + + RES-0262 + selec-w + false + + TEN-0247 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0247 + + + LOT-0262 + + + + RES-0263 + selec-w + false + + TEN-0248 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0248 + + + LOT-0263 + + + + RES-0264 + selec-w + false + + TEN-0249 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0249 + + + LOT-0264 + + + + RES-0265 + selec-w + false + + TEN-0250 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0250 + + + LOT-0265 + + + + RES-0266 + selec-w + false + + TEN-0251 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0251 + + + LOT-0266 + + + + RES-0267 + selec-w + false + + TEN-0252 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0252 + + + LOT-0267 + + + + RES-0268 + selec-w + false + + TEN-0253 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0253 + + + LOT-0268 + + + + RES-0269 + selec-w + false + + TEN-0254 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0254 + + + LOT-0269 + + + + RES-0270 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0270 + + + + RES-0271 + selec-w + false + + TEN-0255 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0255 + + + LOT-0271 + + + + RES-0272 + selec-w + false + + TEN-0256 + + + 10450 + 10450 + + + tenders + 4 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 2 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0256 + + + LOT-0272 + + + + RES-0273 + selec-w + false + + TEN-0257 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0257 + + + LOT-0273 + + + + RES-0274 + selec-w + false + + TEN-0258 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0258 + + + LOT-0274 + + + + RES-0275 + selec-w + false + + TEN-0259 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0259 + + + LOT-0275 + + + + RES-0276 + selec-w + false + + TEN-0260 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0260 + + + LOT-0276 + + + + RES-0277 + selec-w + false + + TEN-0261 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0261 + + + LOT-0277 + + + + RES-0278 + selec-w + false + + TEN-0262 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0262 + + + LOT-0278 + + + + RES-0279 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0279 + + + + RES-0280 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0280 + + + + RES-0281 + selec-w + false + + TEN-0263 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0263 + + + LOT-0281 + + + + RES-0282 + selec-w + false + + TEN-0264 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 2 + + + t-micro + 0 + + + t-small + 2 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0264 + + + LOT-0282 + + + + RES-0283 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0283 + + + + RES-0284 + selec-w + false + + TEN-0265 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0265 + + + LOT-0284 + + + + RES-0285 + selec-w + false + + TEN-0266 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0266 + + + LOT-0285 + + + + RES-0286 + selec-w + false + + TEN-0267 + + + 10450 + 10450 + + + tenders + 3 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 3 + + + CON-0267 + + + LOT-0286 + + + + RES-0287 + selec-w + false + + TEN-0268 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0268 + + + LOT-0287 + + + + RES-0288 + selec-w + false + + TEN-0269 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0269 + + + LOT-0288 + + + + RES-0289 + selec-w + false + + TEN-0270 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0270 + + + LOT-0289 + + + + RES-0290 + selec-w + false + + TEN-0271 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0271 + + + LOT-0290 + + + + RES-0291 + selec-w + false + + TEN-0272 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0272 + + + LOT-0291 + + + + RES-0292 + clos-nw + + all-rej + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + LOT-0292 + + + + RES-0293 + clos-nw + + all-rej + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + LOT-0293 + + + + RES-0294 + clos-nw + + all-rej + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + LOT-0294 + + + + RES-0295 + selec-w + false + + TEN-0273 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0273 + + + LOT-0295 + + + + RES-0296 + selec-w + false + + TEN-0274 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0274 + + + LOT-0296 + + + + RES-0297 + selec-w + false + + TEN-0275 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0275 + + + LOT-0297 + + + + RES-0298 + selec-w + false + + TEN-0276 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0276 + + + LOT-0298 + + + + RES-0299 + selec-w + false + + TEN-0277 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0277 + + + LOT-0299 + + + + RES-0300 + selec-w + false + + TEN-0278 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0278 + + + LOT-0300 + + + + RES-0301 + selec-w + false + + TEN-0279 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0279 + + + LOT-0301 + + + + RES-0302 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0302 + + + + RES-0303 + selec-w + false + + TEN-0280 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 1 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0280 + + + LOT-0303 + + + + RES-0304 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0304 + + + + RES-0305 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0305 + + + + RES-0306 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0306 + + + + RES-0307 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0307 + + + + RES-0308 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0308 + + + + RES-0309 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0309 + + + + RES-0310 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0310 + + + + RES-0311 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0311 + + + + RES-0312 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0312 + + + + RES-0313 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0313 + + + + RES-0314 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0314 + + + + RES-0315 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0315 + + + + RES-0316 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0316 + + + + RES-0317 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0317 + + + + RES-0318 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0318 + + + + RES-0319 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0319 + + + + RES-0320 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0320 + + + + RES-0321 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0321 + + + + RES-0322 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0322 + + + + RES-0323 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0323 + + + + RES-0324 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0324 + + + + RES-0325 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0325 + + + + RES-0326 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0326 + + + + RES-0327 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0327 + + + + RES-0328 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0328 + + + + RES-0329 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0329 + + + + RES-0330 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0330 + + + + RES-0331 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0331 + + + + RES-0332 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0332 + + + + RES-0333 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0333 + + + + RES-0334 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0334 + + + + RES-0335 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0335 + + + + RES-0336 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0336 + + + + RES-0337 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0337 + + + + RES-0338 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0338 + + + + RES-0339 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0339 + + + + RES-0340 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0340 + + + + RES-0341 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0341 + + + + RES-0342 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0342 + + + + RES-0343 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0343 + + + + RES-0344 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0344 + + + + RES-0345 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0345 + + + + RES-0346 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0346 + + + + RES-0347 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0347 + + + + RES-0348 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0348 + + + + RES-0349 + selec-w + false + + TEN-0281 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0281 + + + LOT-0349 + + + + RES-0350 + selec-w + false + + TEN-0282 + + + 10450 + 10450 + + + tenders + 1 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 1 + + + CON-0282 + + + LOT-0350 + + + + RES-0351 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0351 + + + + RES-0352 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0352 + + + + RES-0353 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0353 + + + + RES-0354 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0354 + + + + RES-0355 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0355 + + + + RES-0356 + selec-w + false + + TEN-0283 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0283 + + + LOT-0356 + + + + RES-0357 + selec-w + false + + TEN-0284 + + + 10450 + 10450 + + + tenders + 2 + + + t-sme + 1 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 1 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 2 + + + CON-0284 + + + LOT-0357 + + + + RES-0358 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0358 + + + + RES-0359 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0359 + + + + RES-0360 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0360 + + + + RES-0361 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0361 + + + + RES-0362 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0362 + + + + RES-0363 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0363 + + + + RES-0364 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0364 + + + + RES-0365 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0365 + + + + RES-0366 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0366 + + + + RES-0367 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0367 + + + + RES-0368 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0368 + + + + RES-0369 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0369 + + + + RES-0370 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0370 + + + + RES-0371 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0371 + + + + RES-0372 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0372 + + + + RES-0373 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0373 + + + + RES-0374 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0374 + + + + RES-0375 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0375 + + + + RES-0376 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0376 + + + + RES-0377 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0377 + + + + RES-0378 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0378 + + + + RES-0379 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0379 + + + + RES-0380 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0380 + + + + RES-0381 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0381 + + + + RES-0382 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0382 + + + + RES-0383 + clos-nw + + no-rece + + + tenders + 0 + + + t-sme + 0 + + + t-micro + 0 + + + t-small + 0 + + + t-med + 0 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 0 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 0 + + + LOT-0383 + + + + RES-0384 + selec-w + false + + TEN-0285 + + + 32200 + 32200 + + + tenders + 4 + + + t-sme + 4 + + + t-micro + 0 + + + t-small + 1 + + + t-med + 3 + + + t-oth-eea + 0 + + + t-no-eea + 0 + + + t-verif-inad + 3 + + + t-verif-inad-low + 0 + + + t-no-verif + 0 + + + t-esubm + 4 + + + CON-0285 + + + LOT-0384 + + + + TEN-0001 + + no + + + TPA-0001 + + + LOT-0002 + + + 1 + + + + TEN-0002 + + no + + + TPA-0002 + + + LOT-0003 + + + 1 + + + + TEN-0003 + + no + + + TPA-0003 + + + LOT-0004 + + + 1 + + + + TEN-0004 + + no + + + TPA-0004 + + + LOT-0005 + + + 1 + + + + TEN-0005 + + no + + + TPA-0005 + + + LOT-0006 + + + 1 + + + + TEN-0006 + + no + + + TPA-0006 + + + LOT-0007 + + + 1 + + + + TEN-0007 + + no + + + TPA-0007 + + + LOT-0008 + + + 1 + + + + TEN-0008 + + no + + + TPA-0008 + + + LOT-0009 + + + 1 + + + + TEN-0009 + + no + + + TPA-0009 + + + LOT-0010 + + + 1 + + + + TEN-0010 + + no + + + TPA-0010 + + + LOT-0011 + + + 1 + + + + TEN-0011 + + no + + + TPA-0011 + + + LOT-0012 + + + 1 + + + + TEN-0012 + + no + + + TPA-0012 + + + LOT-0013 + + + 1 + + + + TEN-0013 + + no + + + TPA-0013 + + + LOT-0014 + + + 1 + + + + TEN-0014 + + no + + + TPA-0014 + + + LOT-0015 + + + 1 + + + + TEN-0015 + + no + + + TPA-0015 + + + LOT-0016 + + + 1 + + + + TEN-0016 + + no + + + TPA-0016 + + + LOT-0017 + + + 1 + + + + TEN-0017 + + no + + + TPA-0017 + + + LOT-0018 + + + 1 + + + + TEN-0018 + + no + + + TPA-0018 + + + LOT-0019 + + + 1 + + + + TEN-0019 + + no + + + TPA-0019 + + + LOT-0020 + + + 1 + + + + TEN-0020 + + no + + + TPA-0020 + + + LOT-0021 + + + 1 + + + + TEN-0021 + + no + + + TPA-0021 + + + LOT-0022 + + + 1 + + + + TEN-0022 + + no + + + TPA-0022 + + + LOT-0023 + + + 1 + + + + TEN-0023 + + no + + + TPA-0023 + + + LOT-0024 + + + 1 + + + + TEN-0024 + + no + + + TPA-0024 + + + LOT-0025 + + + 1 + + + + TEN-0025 + + no + + + TPA-0025 + + + LOT-0026 + + + 1 + + + + TEN-0026 + + no + + + TPA-0026 + + + LOT-0027 + + + 1 + + + + TEN-0027 + + no + + + TPA-0027 + + + LOT-0028 + + + 1 + + + + TEN-0028 + + no + + + TPA-0028 + + + LOT-0029 + + + 1 + + + + TEN-0029 + + no + + + TPA-0029 + + + LOT-0030 + + + 1 + + + + TEN-0030 + + no + + + TPA-0030 + + + LOT-0031 + + + 1 + + + + TEN-0031 + + no + + + TPA-0031 + + + LOT-0032 + + + 1 + + + + TEN-0032 + + no + + + TPA-0032 + + + LOT-0034 + + + 1 + + + + TEN-0033 + + no + + + TPA-0033 + + + LOT-0035 + + + 1 + + + + TEN-0034 + + no + + + TPA-0034 + + + LOT-0036 + + + 1 + + + + TEN-0035 + + no + + + TPA-0035 + + + LOT-0037 + + + 1 + + + + TEN-0036 + + no + + + TPA-0036 + + + LOT-0038 + + + 1 + + + + TEN-0037 + + no + + + TPA-0037 + + + LOT-0039 + + + 1 + + + + TEN-0038 + + no + + + TPA-0038 + + + LOT-0040 + + + 1 + + + + TEN-0039 + + no + + + TPA-0039 + + + LOT-0041 + + + 1 + + + + TEN-0040 + + no + + + TPA-0040 + + + LOT-0042 + + + 1 + + + + TEN-0041 + + no + + + TPA-0041 + + + LOT-0043 + + + 1 + + + + TEN-0042 + + no + + + TPA-0042 + + + LOT-0044 + + + 1 + + + + TEN-0043 + + no + + + TPA-0043 + + + LOT-0045 + + + 1 + + + + TEN-0044 + + no + + + TPA-0044 + + + LOT-0046 + + + 1 + + + + TEN-0045 + + no + + + TPA-0045 + + + LOT-0047 + + + 1 + + + + TEN-0046 + + no + + + TPA-0046 + + + LOT-0048 + + + 1 + + + + TEN-0047 + + no + + + TPA-0047 + + + LOT-0049 + + + 1 + + + + TEN-0048 + + no + + + TPA-0048 + + + LOT-0050 + + + 1 + + + + TEN-0049 + + no + + + TPA-0049 + + + LOT-0051 + + + 1 + + + + TEN-0050 + + no + + + TPA-0050 + + + LOT-0052 + + + 1 + + + + TEN-0051 + + no + + + TPA-0051 + + + LOT-0053 + + + 1 + + + + TEN-0052 + + no + + + TPA-0052 + + + LOT-0054 + + + 1 + + + + TEN-0053 + + no + + + TPA-0053 + + + LOT-0055 + + + 1 + + + + TEN-0054 + + no + + + TPA-0054 + + + LOT-0056 + + + 1 + + + + TEN-0055 + + no + + + TPA-0055 + + + LOT-0057 + + + 1 + + + + TEN-0056 + + no + + + TPA-0056 + + + LOT-0058 + + + 1 + + + + TEN-0057 + + no + + + TPA-0057 + + + LOT-0059 + + + 1 + + + + TEN-0058 + + no + + + TPA-0058 + + + LOT-0060 + + + 1 + + + + TEN-0059 + + no + + + TPA-0059 + + + LOT-0061 + + + 1 + + + + TEN-0060 + + no + + + TPA-0060 + + + LOT-0062 + + + 1 + + + + TEN-0061 + + no + + + TPA-0061 + + + LOT-0063 + + + 1 + + + + TEN-0062 + + no + + + TPA-0062 + + + LOT-0064 + + + 1 + + + + TEN-0063 + + no + + + TPA-0063 + + + LOT-0065 + + + 1 + + + + TEN-0064 + + no + + + TPA-0064 + + + LOT-0066 + + + 1 + + + + TEN-0065 + + no + + + TPA-0065 + + + LOT-0067 + + + 1 + + + + TEN-0066 + + no + + + TPA-0066 + + + LOT-0068 + + + 1 + + + + TEN-0067 + + no + + + TPA-0067 + + + LOT-0069 + + + 1 + + + + TEN-0068 + + no + + + TPA-0068 + + + LOT-0070 + + + 1 + + + + TEN-0069 + + no + + + TPA-0069 + + + LOT-0071 + + + 1 + + + + TEN-0070 + + no + + + TPA-0070 + + + LOT-0072 + + + 1 + + + + TEN-0071 + + no + + + TPA-0071 + + + LOT-0073 + + + 1 + + + + TEN-0072 + + no + + + TPA-0072 + + + LOT-0074 + + + 1 + + + + TEN-0073 + + no + + + TPA-0073 + + + LOT-0075 + + + 1 + + + + TEN-0074 + + no + + + TPA-0074 + + + LOT-0076 + + + 1 + + + + TEN-0075 + + no + + + TPA-0075 + + + LOT-0077 + + + 1 + + + + TEN-0076 + + no + + + TPA-0076 + + + LOT-0078 + + + 1 + + + + TEN-0077 + + no + + + TPA-0077 + + + LOT-0079 + + + 1 + + + + TEN-0078 + + no + + + TPA-0078 + + + LOT-0080 + + + 1 + + + + TEN-0079 + + no + + + TPA-0079 + + + LOT-0082 + + + 1 + + + + TEN-0080 + + no + + + TPA-0080 + + + LOT-0083 + + + 1 + + + + TEN-0081 + + no + + + TPA-0081 + + + LOT-0084 + + + 1 + + + + TEN-0082 + + no + + + TPA-0082 + + + LOT-0085 + + + 1 + + + + TEN-0083 + + no + + + TPA-0083 + + + LOT-0086 + + + 1 + + + + TEN-0084 + + no + + + TPA-0084 + + + LOT-0087 + + + 1 + + + + TEN-0085 + + no + + + TPA-0085 + + + LOT-0088 + + + 1 + + + + TEN-0086 + + no + + + TPA-0086 + + + LOT-0089 + + + 1 + + + + TEN-0087 + + no + + + TPA-0087 + + + LOT-0090 + + + 1 + + + + TEN-0088 + + no + + + TPA-0088 + + + LOT-0091 + + + 1 + + + + TEN-0089 + + no + + + TPA-0089 + + + LOT-0092 + + + 1 + + + + TEN-0090 + + no + + + TPA-0090 + + + LOT-0093 + + + 1 + + + + TEN-0091 + + no + + + TPA-0091 + + + LOT-0094 + + + 1 + + + + TEN-0092 + + no + + + TPA-0092 + + + LOT-0095 + + + 1 + + + + TEN-0093 + + no + + + TPA-0093 + + + LOT-0096 + + + 1 + + + + TEN-0094 + + no + + + TPA-0094 + + + LOT-0097 + + + 1 + + + + TEN-0095 + + no + + + TPA-0095 + + + LOT-0098 + + + 1 + + + + TEN-0096 + + no + + + TPA-0096 + + + LOT-0099 + + + 1 + + + + TEN-0097 + + no + + + TPA-0097 + + + LOT-0100 + + + 1 + + + + TEN-0098 + + no + + + TPA-0098 + + + LOT-0101 + + + 1 + + + + TEN-0099 + + no + + + TPA-0099 + + + LOT-0102 + + + 1 + + + + TEN-0100 + + no + + + TPA-0100 + + + LOT-0103 + + + 1 + + + + TEN-0101 + + no + + + TPA-0101 + + + LOT-0104 + + + 1 + + + + TEN-0102 + + no + + + TPA-0102 + + + LOT-0105 + + + 1 + + + + TEN-0103 + + no + + + TPA-0103 + + + LOT-0106 + + + 1 + + + + TEN-0104 + + no + + + TPA-0104 + + + LOT-0107 + + + 1 + + + + TEN-0105 + + no + + + TPA-0105 + + + LOT-0108 + + + 1 + + + + TEN-0106 + + no + + + TPA-0106 + + + LOT-0109 + + + 1 + + + + TEN-0107 + + no + + + TPA-0107 + + + LOT-0110 + + + 1 + + + + TEN-0108 + + no + + + TPA-0108 + + + LOT-0112 + + + 1 + + + + TEN-0109 + + no + + + TPA-0109 + + + LOT-0113 + + + 1 + + + + TEN-0110 + + no + + + TPA-0110 + + + LOT-0114 + + + 1 + + + + TEN-0111 + + no + + + TPA-0111 + + + LOT-0115 + + + 1 + + + + TEN-0112 + + no + + + TPA-0112 + + + LOT-0116 + + + 1 + + + + TEN-0113 + + no + + + TPA-0113 + + + LOT-0117 + + + 1 + + + + TEN-0114 + + no + + + TPA-0114 + + + LOT-0118 + + + 1 + + + + TEN-0115 + + no + + + TPA-0115 + + + LOT-0119 + + + 1 + + + + TEN-0116 + + no + + + TPA-0116 + + + LOT-0120 + + + 1 + + + + TEN-0117 + + no + + + TPA-0117 + + + LOT-0121 + + + 1 + + + + TEN-0118 + + no + + + TPA-0118 + + + LOT-0122 + + + 1 + + + + TEN-0119 + + no + + + TPA-0119 + + + LOT-0123 + + + 1 + + + + TEN-0120 + + no + + + TPA-0120 + + + LOT-0124 + + + 1 + + + + TEN-0121 + + no + + + TPA-0121 + + + LOT-0125 + + + 1 + + + + TEN-0122 + + no + + + TPA-0122 + + + LOT-0126 + + + 1 + + + + TEN-0123 + + no + + + TPA-0123 + + + LOT-0127 + + + 1 + + + + TEN-0124 + + no + + + TPA-0124 + + + LOT-0128 + + + 1 + + + + TEN-0125 + + no + + + TPA-0125 + + + LOT-0129 + + + 1 + + + + TEN-0126 + + no + + + TPA-0126 + + + LOT-0130 + + + 1 + + + + TEN-0127 + + no + + + TPA-0127 + + + LOT-0131 + + + 1 + + + + TEN-0128 + + no + + + TPA-0128 + + + LOT-0132 + + + 1 + + + + TEN-0129 + + no + + + TPA-0129 + + + LOT-0133 + + + 1 + + + + TEN-0130 + + no + + + TPA-0130 + + + LOT-0135 + + + 1 + + + + TEN-0131 + + no + + + TPA-0131 + + + LOT-0136 + + + 1 + + + + TEN-0132 + + no + + + TPA-0132 + + + LOT-0137 + + + 1 + + + + TEN-0133 + + no + + + TPA-0133 + + + LOT-0138 + + + 1 + + + + TEN-0134 + + no + + + TPA-0134 + + + LOT-0139 + + + 1 + + + + TEN-0135 + + no + + + TPA-0135 + + + LOT-0140 + + + 1 + + + + TEN-0136 + + no + + + TPA-0136 + + + LOT-0141 + + + 1 + + + + TEN-0137 + + no + + + TPA-0137 + + + LOT-0142 + + + 1 + + + + TEN-0138 + + no + + + TPA-0138 + + + LOT-0143 + + + 1 + + + + TEN-0139 + + no + + + TPA-0139 + + + LOT-0144 + + + 1 + + + + TEN-0140 + + no + + + TPA-0140 + + + LOT-0145 + + + 1 + + + + TEN-0141 + + no + + + TPA-0141 + + + LOT-0146 + + + 1 + + + + TEN-0142 + + no + + + TPA-0142 + + + LOT-0147 + + + 1 + + + + TEN-0143 + + no + + + TPA-0143 + + + LOT-0148 + + + 1 + + + + TEN-0144 + + no + + + TPA-0144 + + + LOT-0150 + + + 1 + + + + TEN-0145 + + no + + + TPA-0145 + + + LOT-0151 + + + 1 + + + + TEN-0146 + + no + + + TPA-0146 + + + LOT-0152 + + + 1 + + + + TEN-0147 + + no + + + TPA-0147 + + + LOT-0153 + + + 1 + + + + TEN-0148 + + no + + + TPA-0148 + + + LOT-0154 + + + 1 + + + + TEN-0149 + + no + + + TPA-0149 + + + LOT-0155 + + + 1 + + + + TEN-0150 + + no + + + TPA-0150 + + + LOT-0156 + + + 1 + + + + TEN-0151 + + no + + + TPA-0151 + + + LOT-0157 + + + 1 + + + + TEN-0152 + + no + + + TPA-0152 + + + LOT-0159 + + + 1 + + + + TEN-0153 + + no + + + TPA-0153 + + + LOT-0160 + + + 1 + + + + TEN-0154 + + no + + + TPA-0154 + + + LOT-0161 + + + 1 + + + + TEN-0155 + + no + + + TPA-0155 + + + LOT-0162 + + + 1 + + + + TEN-0156 + + no + + + TPA-0156 + + + LOT-0163 + + + 1 + + + + TEN-0157 + + no + + + TPA-0157 + + + LOT-0164 + + + 1 + + + + TEN-0158 + + no + + + TPA-0158 + + + LOT-0165 + + + 1 + + + + TEN-0159 + + no + + + TPA-0159 + + + LOT-0166 + + + 1 + + + + TEN-0160 + + no + + + TPA-0160 + + + LOT-0167 + + + 1 + + + + TEN-0161 + + no + + + TPA-0161 + + + LOT-0168 + + + 1 + + + + TEN-0162 + + no + + + TPA-0162 + + + LOT-0169 + + + 1 + + + + TEN-0163 + + no + + + TPA-0163 + + + LOT-0170 + + + 1 + + + + TEN-0164 + + no + + + TPA-0164 + + + LOT-0171 + + + 1 + + + + TEN-0165 + + no + + + TPA-0165 + + + LOT-0172 + + + 1 + + + + TEN-0166 + + no + + + TPA-0166 + + + LOT-0174 + + + 1 + + + + TEN-0167 + + no + + + TPA-0167 + + + LOT-0176 + + + 1 + + + + TEN-0168 + + no + + + TPA-0168 + + + LOT-0177 + + + 1 + + + + TEN-0169 + + no + + + TPA-0169 + + + LOT-0178 + + + 1 + + + + TEN-0170 + + no + + + TPA-0170 + + + LOT-0179 + + + 1 + + + + TEN-0171 + + no + + + TPA-0171 + + + LOT-0180 + + + 1 + + + + TEN-0172 + + no + + + TPA-0172 + + + LOT-0182 + + + 1 + + + + TEN-0173 + + no + + + TPA-0173 + + + LOT-0183 + + + 1 + + + + TEN-0174 + + no + + + TPA-0174 + + + LOT-0184 + + + 1 + + + + TEN-0175 + + no + + + TPA-0175 + + + LOT-0185 + + + 1 + + + + TEN-0176 + + no + + + TPA-0176 + + + LOT-0186 + + + 1 + + + + TEN-0177 + + no + + + TPA-0177 + + + LOT-0187 + + + 1 + + + + TEN-0178 + + no + + + TPA-0178 + + + LOT-0188 + + + 1 + + + + TEN-0179 + + no + + + TPA-0179 + + + LOT-0189 + + + 1 + + + + TEN-0180 + + no + + + TPA-0180 + + + LOT-0190 + + + 1 + + + + TEN-0181 + + no + + + TPA-0181 + + + LOT-0191 + + + 1 + + + + TEN-0182 + + no + + + TPA-0182 + + + LOT-0192 + + + 1 + + + + TEN-0183 + + no + + + TPA-0183 + + + LOT-0193 + + + 1 + + + + TEN-0184 + + no + + + TPA-0184 + + + LOT-0194 + + + 1 + + + + TEN-0185 + + no + + + TPA-0185 + + + LOT-0195 + + + 1 + + + + TEN-0186 + + no + + + TPA-0186 + + + LOT-0196 + + + 1 + + + + TEN-0187 + + no + + + TPA-0187 + + + LOT-0197 + + + 1 + + + + TEN-0188 + + no + + + TPA-0188 + + + LOT-0200 + + + 1 + + + + TEN-0189 + + no + + + TPA-0189 + + + LOT-0201 + + + 1 + + + + TEN-0190 + + no + + + TPA-0190 + + + LOT-0202 + + + 1 + + + + TEN-0191 + + no + + + TPA-0191 + + + LOT-0203 + + + 1 + + + + TEN-0192 + + no + + + TPA-0192 + + + LOT-0204 + + + 1 + + + + TEN-0193 + + no + + + TPA-0193 + + + LOT-0205 + + + 1 + + + + TEN-0194 + + no + + + TPA-0194 + + + LOT-0206 + + + 1 + + + + TEN-0195 + + no + + + TPA-0195 + + + LOT-0207 + + + 1 + + + + TEN-0196 + + no + + + TPA-0196 + + + LOT-0208 + + + 1 + + + + TEN-0197 + + no + + + TPA-0197 + + + LOT-0209 + + + 1 + + + + TEN-0198 + + no + + + TPA-0198 + + + LOT-0210 + + + 1 + + + + TEN-0199 + + no + + + TPA-0199 + + + LOT-0211 + + + 1 + + + + TEN-0200 + + no + + + TPA-0200 + + + LOT-0212 + + + 1 + + + + TEN-0201 + + no + + + TPA-0201 + + + LOT-0213 + + + 1 + + + + TEN-0202 + + no + + + TPA-0202 + + + LOT-0214 + + + 1 + + + + TEN-0203 + + no + + + TPA-0203 + + + LOT-0215 + + + 1 + + + + TEN-0204 + + no + + + TPA-0204 + + + LOT-0216 + + + 1 + + + + TEN-0205 + + no + + + TPA-0205 + + + LOT-0217 + + + 1 + + + + TEN-0206 + + no + + + TPA-0206 + + + LOT-0218 + + + 1 + + + + TEN-0207 + + no + + + TPA-0207 + + + LOT-0219 + + + 1 + + + + TEN-0208 + + no + + + TPA-0208 + + + LOT-0220 + + + 1 + + + + TEN-0209 + + no + + + TPA-0209 + + + LOT-0221 + + + 1 + + + + TEN-0210 + + no + + + TPA-0210 + + + LOT-0222 + + + 1 + + + + TEN-0211 + + no + + + TPA-0211 + + + LOT-0223 + + + 1 + + + + TEN-0212 + + yes + false + false + + + TPA-0212 + + + LOT-0224 + + + 1 + + + + TEN-0213 + + no + + + TPA-0213 + + + LOT-0225 + + + 1 + + + + TEN-0214 + + no + + + TPA-0214 + + + LOT-0226 + + + 1 + + + + TEN-0215 + + no + + + TPA-0215 + + + LOT-0227 + + + 1 + + + + TEN-0216 + + no + + + TPA-0216 + + + LOT-0228 + + + 1 + + + + TEN-0217 + + no + + + TPA-0217 + + + LOT-0229 + + + 1 + + + + TEN-0218 + + no + + + TPA-0218 + + + LOT-0230 + + + 1 + + + + TEN-0219 + + no + + + TPA-0219 + + + LOT-0231 + + + 1 + + + + TEN-0220 + + no + + + TPA-0220 + + + LOT-0232 + + + 1 + + + + TEN-0221 + + no + + + TPA-0221 + + + LOT-0234 + + + 1 + + + + TEN-0222 + + no + + + TPA-0222 + + + LOT-0235 + + + 1 + + + + TEN-0223 + + no + + + TPA-0223 + + + LOT-0236 + + + 1 + + + + TEN-0224 + + no + + + TPA-0224 + + + LOT-0237 + + + 1 + + + + TEN-0225 + + no + + + TPA-0225 + + + LOT-0238 + + + 1 + + + + TEN-0226 + + no + + + TPA-0226 + + + LOT-0239 + + + 1 + + + + TEN-0227 + + no + + + TPA-0227 + + + LOT-0240 + + + 1 + + + + TEN-0228 + + no + + + TPA-0228 + + + LOT-0241 + + + 1 + + + + TEN-0229 + + no + + + TPA-0229 + + + LOT-0242 + + + 1 + + + + TEN-0230 + + no + + + TPA-0230 + + + LOT-0243 + + + 1 + + + + TEN-0231 + + no + + + TPA-0231 + + + LOT-0244 + + + 1 + + + + TEN-0232 + + no + + + TPA-0232 + + + LOT-0245 + + + 1 + + + + TEN-0233 + + no + + + TPA-0233 + + + LOT-0246 + + + 1 + + + + TEN-0234 + + no + + + TPA-0234 + + + LOT-0247 + + + 1 + + + + TEN-0235 + + no + + + TPA-0235 + + + LOT-0248 + + + 1 + + + + TEN-0236 + + no + + + TPA-0236 + + + LOT-0249 + + + 1 + + + + TEN-0237 + + no + + + TPA-0237 + + + LOT-0250 + + + 1 + + + + TEN-0238 + + no + + + TPA-0238 + + + LOT-0252 + + + 1 + + + + TEN-0239 + + no + + + TPA-0239 + + + LOT-0253 + + + 1 + + + + TEN-0240 + + no + + + TPA-0240 + + + LOT-0255 + + + 1 + + + + TEN-0241 + + no + + + TPA-0241 + + + LOT-0256 + + + 1 + + + + TEN-0242 + + no + + + TPA-0242 + + + LOT-0257 + + + 1 + + + + TEN-0243 + + no + + + TPA-0243 + + + LOT-0258 + + + 1 + + + + TEN-0244 + + no + + + TPA-0244 + + + LOT-0259 + + + 1 + + + + TEN-0245 + + no + + + TPA-0245 + + + LOT-0260 + + + 1 + + + + TEN-0246 + + no + + + TPA-0246 + + + LOT-0261 + + + 1 + + + + TEN-0247 + + no + + + TPA-0247 + + + LOT-0262 + + + 1 + + + + TEN-0248 + + no + + + TPA-0248 + + + LOT-0263 + + + 1 + + + + TEN-0249 + + no + + + TPA-0249 + + + LOT-0264 + + + 1 + + + + TEN-0250 + + no + + + TPA-0250 + + + LOT-0265 + + + 1 + + + + TEN-0251 + + no + + + TPA-0251 + + + LOT-0266 + + + 1 + + + + TEN-0252 + + no + + + TPA-0252 + + + LOT-0267 + + + 1 + + + + TEN-0253 + + no + + + TPA-0253 + + + LOT-0268 + + + 1 + + + + TEN-0254 + + no + + + TPA-0254 + + + LOT-0269 + + + 1 + + + + TEN-0255 + + no + + + TPA-0255 + + + LOT-0271 + + + 1 + + + + TEN-0256 + + no + + + TPA-0256 + + + LOT-0272 + + + 1 + + + + TEN-0257 + + no + + + TPA-0257 + + + LOT-0273 + + + 1 + + + + TEN-0258 + + no + + + TPA-0258 + + + LOT-0274 + + + 1 + + + + TEN-0259 + + no + + + TPA-0259 + + + LOT-0275 + + + 1 + + + + TEN-0260 + + no + + + TPA-0260 + + + LOT-0276 + + + 1 + + + + TEN-0261 + + no + + + TPA-0261 + + + LOT-0277 + + + 1 + + + + TEN-0262 + + no + + + TPA-0262 + + + LOT-0278 + + + 1 + + + + TEN-0263 + + no + + + TPA-0263 + + + LOT-0281 + + + 1 + + + + TEN-0264 + + no + + + TPA-0264 + + + LOT-0282 + + + 1 + + + + TEN-0265 + + no + + + TPA-0265 + + + LOT-0284 + + + 1 + + + + TEN-0266 + + no + + + TPA-0266 + + + LOT-0285 + + + 1 + + + + TEN-0267 + + no + + + TPA-0267 + + + LOT-0286 + + + 1 + + + + TEN-0268 + + no + + + TPA-0268 + + + LOT-0287 + + + 1 + + + + TEN-0269 + + no + + + TPA-0269 + + + LOT-0288 + + + 1 + + + + TEN-0270 + + no + + + TPA-0270 + + + LOT-0289 + + + 1 + + + + TEN-0271 + + no + + + TPA-0271 + + + LOT-0290 + + + 1 + + + + TEN-0272 + + no + + + TPA-0272 + + + LOT-0291 + + + 1 + + + + TEN-0273 + + no + + + TPA-0273 + + + LOT-0295 + + + 1 + + + + TEN-0274 + + no + + + TPA-0274 + + + LOT-0296 + + + 1 + + + + TEN-0275 + + no + + + TPA-0275 + + + LOT-0297 + + + 1 + + + + TEN-0276 + + no + + + TPA-0276 + + + LOT-0298 + + + 1 + + + + TEN-0277 + + no + + + TPA-0277 + + + LOT-0299 + + + 1 + + + + TEN-0278 + + no + + + TPA-0278 + + + LOT-0300 + + + 1 + + + + TEN-0279 + + no + + + TPA-0279 + + + LOT-0301 + + + 1 + + + + TEN-0280 + + no + + + TPA-0280 + + + LOT-0303 + + + 1 + + + + TEN-0281 + + no + + + TPA-0281 + + + LOT-0349 + + + 1 + + + + TEN-0282 + + no + + + TPA-0282 + + + LOT-0350 + + + 1 + + + + TEN-0283 + + no + + + TPA-0283 + + + LOT-0356 + + + 1 + + + + TEN-0284 + + no + + + TPA-0284 + + + LOT-0357 + + + 1 + + + + TEN-0285 + + no + + + TPA-0285 + + + LOT-0384 + + + 1 + + + + CON-0001 + 2023-07-24+02:00 + Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0001 + + + + CON-0002 + 2023-07-24+02:00 + Lidocaini hydrochloridum, Matricariae extractum fluidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0002 + + + + CON-0003 + 2023-07-24+02:00 + Omeprazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0003 + + + + CON-0004 + 2023-07-24+02:00 + Pantoprazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0004 + + + + CON-0005 + 2023-07-24+02:00 + Drotaverini hydrochlorium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0005 + + + + CON-0006 + 2023-07-24+02:00 + Atropini sulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0006 + + + + CON-0007 + 2023-07-24+02:00 + Butylscopolamini bromidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0007 + + + + CON-0008 + 2023-07-24+02:00 + Metoclopramidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0008 + + + + CON-0009 + 2023-07-24+02:00 + Ondansetronum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0009 + + + + CON-0010 + 2023-07-24+02:00 + Bisacodilum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0010 + + + + CON-0011 + 2023-07-24+02:00 + Lactulosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0011 + + + + CON-0012 + 2023-07-24+02:00 + Sorbitolum, Natrii citras, Natrii laurilsulfoacetas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0012 + + + + CON-0013 + 2023-07-24+02:00 + Loperamidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0013 + + + + CON-0014 + 2023-07-24+02:00 + Insulinum lispro - ātras darbības insulīni, to analogi + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0014 + + + + CON-0015 + 2023-07-24+02:00 + Insulinum aspartum - ātras darbības insulīni, to analogi + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0015 + + + + CON-0016 + 2023-07-24+02:00 + Insulinum glarginum - garas darbības insulīni, to analogi + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0016 + + + + CON-0017 + 2023-07-24+02:00 + Metformini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0017 + + + + CON-0018 + 2023-07-24+02:00 + Metformini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0018 + + + + CON-0019 + 2023-07-24+02:00 + Thiamini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0019 + + + + CON-0020 + 2023-07-24+02:00 + Pyridoxini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0020 + + + + CON-0021 + 2023-07-24+02:00 + Calcii gluconas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0021 + + + + CON-0022 + 2023-07-24+02:00 + Heparinum natricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0022 + + + + CON-0023 + 2023-07-24+02:00 + Heparinum natricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0023 + + + + CON-0024 + 2023-07-24+02:00 + Bemiparinum natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0024 + + + + CON-0025 + 2023-07-24+02:00 + Bemiparinum natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0025 + + + + CON-0026 + 2023-07-24+02:00 + Nadroparinum calcicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0026 + + + + CON-0027 + 2023-07-24+02:00 + Nadroparinum calcicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0027 + + + + CON-0028 + 2023-07-24+02:00 + Acidum acetylsalicylicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0028 + + + + CON-0029 + 2023-07-24+02:00 + Rivaroxabanum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0029 + + + + CON-0030 + 2023-07-24+02:00 + Etamsylatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0030 + + + + CON-0031 + 2023-07-24+02:00 + Acidum tranexamicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0031 + + + + CON-0032 + 2023-07-24+02:00 + Phytomenadionum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0032 + + + + CON-0033 + 2023-07-24+02:00 + Phytomenadionum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0033 + + + + CON-0034 + 2023-07-24+02:00 + Cyanocobolaminum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0034 + + + + CON-0035 + 2023-07-24+02:00 + *Elektrolītu šķīdums (Ringera) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0035 + + + + CON-0036 + 2023-11-06+02:00 + **Elektrolītu šķīdums (Ringera) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0036 + + + + CON-0037 + 2023-07-24+02:00 + *Elektrolītu šķīdums (Ringera) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0037 + + + + CON-0038 + 2023-07-24+02:00 + **Elektrolītu šķīdums (Ringera) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0038 + + + + CON-0039 + 2023-07-24+02:00 + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0039 + + + + CON-0040 + 2023-07-24+02:00 + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0040 + + + + CON-0041 + 2023-07-24+02:00 + *Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0041 + + + + CON-0042 + 2023-07-24+02:00 + **Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0042 + + + + CON-0043 + 2023-07-24+02:00 + *Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0043 + + + + CON-0044 + 2023-07-24+02:00 + **Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0044 + + + + CON-0045 + 2023-07-24+02:00 + *Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0045 + + + + CON-0046 + 2023-07-24+02:00 + Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0046 + + + + CON-0047 + 2023-07-24+02:00 + Glucosum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0047 + + + + CON-0048 + 2023-07-24+02:00 + Gelatinum succinas, Natrii chloridum, Natrii hydroxidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0048 + + + + CON-0049 + 2023-07-24+02:00 + Central emulsija infūzijāmTrīskambaru maisu sistēma ar kopējo tilpumu 493 ml, kas sastāv no glikozes 42% šķīduma, aminoskābes šķīduma ar elektrolītiem un tauku emulsijas, kas bagātināta ar omega 3 taukskābēm, parenterālai barošanai centrālā vēnā. Osmolaritāte 1500 mosmol/l, kopējais enerģijas daudzums 550 kcal. + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0049 + + + + CON-0050 + 2023-07-24+02:00 + Peripheral emulsija infūzijām,Trīskambaru maisu sistēma ar kopējo tilpumu 1904 ml, kas sastāv no glikozes 13% šķīduma, aminoskābes šķīduma ar elektrolītiem un tauku emulsijas, kas bagātināta ar omega 3 taukskābēm, parenterālai barošanai perifērā vēnā. Osmolaritāte 850 mosmol/l, kopējais enerģijas daudzums 1300 kcal. + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0050 + + + + CON-0051 + 2023-07-24+02:00 + *Mannitolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0051 + + + + CON-0052 + 2023-07-24+02:00 + Kalii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0052 + + + + CON-0053 + 2023-07-24+02:00 + Kalii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0053 + + + + CON-0054 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0054 + + + + CON-0055 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0055 + + + + CON-0056 + 2023-07-24+02:00 + *Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0056 + + + + CON-0057 + 2023-07-24+02:00 + **Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0057 + + + + CON-0058 + 2023-07-24+02:00 + *Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0058 + + + + CON-0059 + 2023-07-24+02:00 + **Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0059 + + + + CON-0060 + 2023-07-24+02:00 + *Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0060 + + + + CON-0061 + 2023-07-24+02:00 + **Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0061 + + + + CON-0062 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0062 + + + + CON-0063 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0063 + + + + CON-0064 + 2023-07-24+02:00 + *Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0064 + + + + CON-0065 + 2023-07-24+02:00 + **Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0065 + + + + CON-0066 + 2023-07-24+02:00 + **Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0066 + + + + CON-0067 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0067 + + + + CON-0068 + 2023-07-24+02:00 + Natrii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0068 + + + + CON-0069 + 2023-07-24+02:00 + Natrii hydrocarbonas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0069 + + + + CON-0070 + 2023-07-24+02:00 + Natrii hydrocarbonas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0070 + + + + CON-0071 + 2023-07-24+02:00 + Magnesii sulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0071 + + + + CON-0072 + 2023-07-24+02:00 + Digoxinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0072 + + + + CON-0073 + 2023-07-24+02:00 + Amiodaronum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0073 + + + + CON-0074 + 2023-07-24+02:00 + Norepinephrinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0074 + + + + CON-0075 + 2023-07-24+02:00 + Ephedrini hydrohloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0075 + + + + CON-0076 + 2023-07-24+02:00 + Dopamini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0076 + + + + CON-0077 + 2023-07-24+02:00 + Dobutaminum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0077 + + + + CON-0078 + 2023-07-24+02:00 + Epinephrinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0078 + + + + CON-0079 + 2023-07-24+02:00 + Glyceroli trinitras + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0079 + + + + CON-0080 + 2023-07-24+02:00 + Meldonium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0080 + + + + CON-0081 + 2023-07-24+02:00 + Adenosinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0081 + + + + CON-0082 + 2023-07-24+02:00 + Ivabradinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0082 + + + + CON-0083 + 2023-10-26+02:00 + Clonidinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0083 + + + + CON-0084 + 2023-07-24+02:00 + Clonidinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0084 + + + + CON-0085 + 2023-07-24+02:00 + Furosemidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0085 + + + + CON-0086 + 2023-07-24+02:00 + Furosemidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0086 + + + + CON-0087 + 2023-07-24+02:00 + Torasemidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0087 + + + + CON-0088 + 2023-07-24+02:00 + Spironolactonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0088 + + + + CON-0089 + 2023-10-11+02:00 + Pentoxifyllinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0089 + + + + CON-0090 + 2023-07-24+02:00 + Xylocain + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0090 + + + + CON-0091 + 2023-07-24+02:00 + Xylocain + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0091 + + + + CON-0092 + 2023-07-24+02:00 + Troxerutinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0092 + + + + CON-0093 + 2023-07-24+02:00 + Polidocanolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0093 + + + + CON-0094 + 2023-07-24+02:00 + Propranololum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0094 + + + + CON-0095 + 2023-07-24+02:00 + Metoprololi tartras + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0095 + + + + CON-0096 + 2023-07-24+02:00 + Bisoprololi fumaras + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0096 + + + + CON-0097 + 2023-07-24+02:00 + Nebivololum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0097 + + + + CON-0098 + 2023-07-24+02:00 + Labetalolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0098 + + + + CON-0099 + 2023-07-24+02:00 + Amlodipinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0099 + + + + CON-0100 + 2023-07-24+02:00 + Nitrendipinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0100 + + + + CON-0101 + 2023-07-24+02:00 + Verapamili hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0101 + + + + CON-0102 + 2023-07-24+02:00 + Captoprilum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0102 + + + + CON-0103 + 2023-07-24+02:00 + Enalaprilum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0103 + + + + CON-0104 + 2023-07-24+02:00 + Enalaprilatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0104 + + + + CON-0105 + 2023-07-24+02:00 + Perindoprili argininum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0105 + + + + CON-0106 + 2023-07-24+02:00 + Isoconazoli nitras, Diflucortoloni valeras + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0106 + + + + CON-0107 + 2023-07-24+02:00 + Zinci oxydum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0107 + + + + CON-0108 + 2023-07-24+02:00 + Dexpanthenolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0108 + + + + CON-0109 + 2023-07-24+02:00 + Dexpanthenolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0109 + + + + CON-0110 + 2023-07-24+02:00 + Acidum fusidicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0110 + + + + CON-0111 + 2023-07-24+02:00 + Acidum fusidicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0111 + + + + CON-0112 + 2023-07-24+02:00 + Methyluracilum, Lidocainum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0112 + + + + CON-0113 + 2023-07-24+02:00 + Methyluracilum, Chloramphenicolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0113 + + + + CON-0114 + 2023-07-24+02:00 + Hydrocortisonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0114 + + + + CON-0115 + 2023-07-24+02:00 + Fluocinoloni acetonidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0115 + + + + CON-0116 + 2023-07-24+02:00 + Fluocinoloni acetonidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0116 + + + + CON-0117 + 2023-07-24+02:00 + Acidum boricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0117 + + + + CON-0118 + 2023-07-24+02:00 + Povidonum iodinatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0118 + + + + CON-0119 + 2023-07-24+02:00 + Povidonum iodinatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0119 + + + + CON-0120 + 2023-07-24+02:00 + Iodum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0120 + + + + CON-0121 + 2023-07-24+02:00 + Viride nitens, sp.aethylicus + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0121 + + + + CON-0122 + 2023-07-24+02:00 + Hydrogenii peroxidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0122 + + + + CON-0123 + 2023-07-24+02:00 + E vitamīna acetāts, bišu vasks + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0123 + + + + CON-0124 + 2023-07-24+02:00 + Desmopressinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0124 + + + + CON-0125 + 2023-07-24+02:00 + Oxytocinumum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0125 + + + + CON-0126 + 2023-07-24+02:00 + Octreotidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0126 + + + + CON-0127 + 2023-07-24+02:00 + Dexamethasonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0127 + + + + CON-0128 + 2023-07-24+02:00 + Dexamethasonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0128 + + + + CON-0129 + 2023-07-24+02:00 + Methylprednisoloni acetas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0129 + + + + CON-0130 + 2023-07-24+02:00 + Methylprednisolonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0130 + + + + CON-0131 + 2023-07-24+02:00 + Prednisolonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0131 + + + + CON-0132 + 2023-07-24+02:00 + Hydrocortisonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0132 + + + + CON-0133 + 2023-07-24+02:00 + Triamcinoloni acetonidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0133 + + + + CON-0134 + 2023-07-24+02:00 + Thiamazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0134 + + + + CON-0135 + 2023-07-24+02:00 + Doxycyclinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0135 + + + + CON-0136 + 2023-07-24+02:00 + Amoxicillinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0136 + + + + CON-0137 + 2023-07-24+02:00 + Benzylpencillinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0137 + + + + CON-0138 + 2023-07-24+02:00 + Amoxicillinum / Acidum clavulanicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0138 + + + + CON-0139 + 2023-07-24+02:00 + Piperacillinum / Tazobactamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0139 + + + + CON-0140 + 2023-07-24+02:00 + Cefazolinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0140 + + + + CON-0141 + 2023-07-24+02:00 + Ceftriaxonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0141 + + + + CON-0142 + 2023-07-24+02:00 + Imipenemum / Cilastatinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0142 + + + + CON-0143 + 2023-10-11+02:00 + Sulfamethoxazolum, Trimethoprimum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0143 + + + + CON-0144 + 2023-07-24+02:00 + Erythromycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0144 + + + + CON-0145 + 2023-07-24+02:00 + Erythromycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0145 + + + + CON-0146 + 2023-07-24+02:00 + Erythromycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0146 + + + + CON-0147 + 2023-07-24+02:00 + Gentamicinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0147 + + + + CON-0148 + 2023-07-24+02:00 + Ciprofloxacinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0148 + + + + CON-0149 + 2023-07-24+02:00 + Ciprofloxacinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0149 + + + + CON-0150 + 2023-07-24+02:00 + Ciprofloxacinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0150 + + + + CON-0151 + 2023-07-24+02:00 + Metronidazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0151 + + + + CON-0152 + 2023-07-24+02:00 + Fluconazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0152 + + + + CON-0153 + 2023-07-24+02:00 + Vaccinum encephalitidis ixodibus advectae inactivatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0153 + + + + CON-0154 + 2023-07-24+02:00 + Vaccinum encephalitidis ixodibus advectae inactivatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0154 + + + + CON-0155 + 2023-07-24+02:00 + Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0155 + + + + CON-0156 + 2023-07-24+02:00 + Viri hepatitidis A inactivatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0156 + + + + CON-0157 + 2023-07-24+02:00 + Vaccinum hepatitidis A inactivatum adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0157 + + + + CON-0158 + 2023-07-24+02:00 + Vaccinum hepatitidis B (ADNr) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0158 + + + + CON-0159 + 2023-07-24+02:00 + Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0159 + + + + CON-0160 + 2023-07-24+02:00 + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0160 + + + + CON-0161 + 2023-07-24+02:00 + Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0161 + + + + CON-0162 + 2023-07-24+02:00 + Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0162 + + + + CON-0163 + 2023-07-24+02:00 + Viri rabiei inactivatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0163 + + + + CON-0164 + 2023-07-24+02:00 + Vaccinum diphtheriae et tetani adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0164 + + + + CON-0165 + 2023-07-24+02:00 + Vaccinum morbillorum, parotitidis et rubellae vivum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0165 + + + + CON-0166 + 2023-07-24+02:00 + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0166 + + + + CON-0167 + 2023-07-24+02:00 + Methotrexatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0167 + + + + CON-0168 + 2023-07-24+02:00 + Mitomycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0168 + + + + CON-0169 + 2023-07-24+02:00 + Doxorubicinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0169 + + + + CON-0170 + 2023-07-24+02:00 + Diclofenacum natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0170 + + + + CON-0171 + 2023-07-24+02:00 + Diclofenacum natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0171 + + + + CON-0172 + 2023-07-24+02:00 + Diclofenacum natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0172 + + + + CON-0173 + 2023-07-24+02:00 + Ketorolaci trometamolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0173 + + + + CON-0174 + 2023-07-24+02:00 + Ibuprofenum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0174 + + + + CON-0175 + 2023-07-24+02:00 + Dexketoprofenum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0175 + + + + CON-0176 + 2023-07-24+02:00 + Dexketoprofenum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0176 + + + + CON-0177 + 2023-07-24+02:00 + Etoricoxibum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0177 + + + + CON-0178 + 2023-07-24+02:00 + Suxamethonii chloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0178 + + + + CON-0179 + 2023-07-24+02:00 + Atracurii besilas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0179 + + + + CON-0180 + 2023-07-24+02:00 + Atracurii besilas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0180 + + + + CON-0181 + 2023-07-24+02:00 + Mivacurium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0181 + + + + CON-0182 + 2023-07-24+02:00 + Cisatracurium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0182 + + + + CON-0183 + 2023-07-24+02:00 + Toxinum A Clostridii botulini haemagglutininum multiplex + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0183 + + + + CON-0184 + 2023-07-24+02:00 + Tizanidinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0184 + + + + CON-0185 + 2023-07-24+02:00 + Tolperisonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0185 + + + + CON-0186 + 2023-07-24+02:00 + Sevofluranum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0186 + + + + CON-0187 + 2023-07-24+02:00 + Thiopentalum natricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0187 + + + + CON-0188 + 2023-07-24+02:00 + Etomidatum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0188 + + + + CON-0189 + 2023-07-24+02:00 + Propofolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0189 + + + + CON-0190 + 2023-07-24+02:00 + Propofolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0190 + + + + CON-0191 + 2023-07-24+02:00 + Bupivacaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0191 + + + + CON-0192 + 2023-07-24+02:00 + Bupivacaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0192 + + + + CON-0193 + 2023-07-24+02:00 + Bupivacaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0193 + + + + CON-0194 + 2023-07-24+02:00 + Ropivacaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0194 + + + + CON-0195 + 2023-07-24+02:00 + Lidocaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0195 + + + + CON-0196 + 2023-07-24+02:00 + Lidocaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0196 + + + + CON-0197 + 2023-07-24+02:00 + Lidocaini hydrochloridum, Chlorhexidinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0197 + + + + CON-0198 + 2023-07-24+02:00 + Prilocainum, Lidocainum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0198 + + + + CON-0199 + 2023-07-24+02:00 + Morphini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0199 + + + + CON-0200 + 2023-07-24+02:00 + Fentanylum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0200 + + + + CON-0201 + 2023-07-24+02:00 + Trimeperidini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0201 + + + + CON-0202 + 2023-07-24+02:00 + Tramadoli hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0202 + + + + CON-0203 + 2023-07-24+02:00 + Tramadoli hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0203 + + + + CON-0204 + 2023-07-24+02:00 + Tramadoli hydrochloridum, Dexketoprofenum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0204 + + + + CON-0205 + 2023-07-24+02:00 + Paracetamolum, Codeini phosphas hemihydricus + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0205 + + + + CON-0206 + 2023-07-24+02:00 + Sumatriptanum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0206 + + + + CON-0207 + 2023-07-24+02:00 + Metamizolum natricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0207 + + + + CON-0208 + 2023-07-24+02:00 + Metamizolum natricum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0208 + + + + CON-0209 + 2023-07-24+02:00 + Acidum acetylsalicylicum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0209 + + + + CON-0210 + 2023-07-24+02:00 + Paracetamolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0210 + + + + CON-0211 + 2023-07-24+02:00 + Paracetamolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0211 + + + + CON-0212 + 2023-07-24+02:00 + Clonazepamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0212 + + + + CON-0213 + 2023-07-24+02:00 + Gabapentinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0213 + + + + CON-0214 + 2023-07-24+02:00 + Pregabalinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0214 + + + + CON-0215 + 2023-07-24+02:00 + Carbamazepinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0215 + + + + CON-0216 + 2023-07-24+02:00 + Trihexyphenidylum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0216 + + + + CON-0217 + 2023-07-24+02:00 + Levodopum, Benserazidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0217 + + + + CON-0218 + 2023-07-24+02:00 + Haloperidolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0218 + + + + CON-0219 + 2023-07-24+02:00 + Haloperidolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0219 + + + + CON-0220 + 2023-07-24+02:00 + Melperonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0220 + + + + CON-0221 + 2023-07-24+02:00 + Diazepamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0221 + + + + CON-0222 + 2023-07-24+02:00 + Diazepamum (iepakojumā tika pa N10 ampulām) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0222 + + + + CON-0223 + 2023-07-24+02:00 + Bromazepamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0223 + + + + CON-0224 + 2023-07-24+02:00 + Quetiapinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0224 + + + + CON-0225 + 2023-07-24+02:00 + Midazolamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0225 + + + + CON-0226 + 2023-07-24+02:00 + Midazolamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0226 + + + + CON-0227 + 2023-07-24+02:00 + Chlorprotixenum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0227 + + + + CON-0228 + 2023-07-24+02:00 + Amitriptylinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0228 + + + + CON-0229 + 2023-07-24+02:00 + Piracetamum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0229 + + + + CON-0230 + 2023-07-24+02:00 + Ipidacrinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0230 + + + + CON-0231 + 2023-07-24+02:00 + Neostigmini methylsulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0231 + + + + CON-0232 + 2023-07-24+02:00 + Metronidazolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0232 + + + + CON-0233 + 2023-07-24+02:00 + Permethrinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0233 + + + + CON-0234 + 2023-07-24+02:00 + Benzylii benzoas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0234 + + + + CON-0235 + 2023-07-24+02:00 + Xylomethazolinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0235 + + + + CON-0236 + 2023-07-24+02:00 + Xylomethazolinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0236 + + + + CON-0237 + 2023-07-24+02:00 + Salbutamoli sulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0237 + + + + CON-0238 + 2023-07-24+02:00 + Salbutamolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0238 + + + + CON-0239 + 2023-07-24+02:00 + Ipratropii bromidum, Fenoteroli hydrobromidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0239 + + + + CON-0240 + 2023-07-24+02:00 + Aminophyllinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0240 + + + + CON-0241 + 2023-07-24+02:00 + Clemastinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0241 + + + + CON-0242 + 2023-07-24+02:00 + Chloropyraminum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0242 + + + + CON-0243 + 2023-07-24+02:00 + Chloropyraminum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0243 + + + + CON-0244 + 2023-07-24+02:00 + Quifenadini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0244 + + + + CON-0245 + 2023-07-24+02:00 + Solutio Ammoniae concentrata + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0245 + + + + CON-0246 + 2023-07-24+02:00 + Tobramycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0246 + + + + CON-0247 + 2023-07-24+02:00 + Tobramycinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0247 + + + + CON-0248 + 2023-07-24+02:00 + Acetazolamidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0248 + + + + CON-0249 + 2023-07-24+02:00 + Moxifloxacinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0249 + + + + CON-0250 + 2023-07-24+02:00 + Diclofenacum Natrium + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0250 + + + + CON-0251 + 2023-07-24+02:00 + Tobramycinum, Dexamethasonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0251 + + + + CON-0252 + 2023-07-24+02:00 + Tobramycinum, Dexamethasonum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0252 + + + + CON-0253 + 2023-07-24+02:00 + Dexamethasonum, Chloramphenicolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0253 + + + + CON-0254 + 2023-07-24+02:00 + Dexamethasonum, Chloramphenicolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0254 + + + + CON-0255 + 2023-07-24+02:00 + Timololum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0255 + + + + CON-0256 + 2023-07-24+02:00 + Timololum, Dorzolamidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0256 + + + + CON-0257 + 2023-07-24+02:00 + Cyclopentolati hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0257 + + + + CON-0258 + 2023-07-24+02:00 + Tropicamidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0258 + + + + CON-0259 + 2023-07-24+02:00 + Phenylephrinum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0259 + + + + CON-0260 + 2023-07-24+02:00 + Proxymetacaini hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0260 + + + + CON-0261 + 2023-07-24+02:00 + Dexpanthenolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0261 + + + + CON-0262 + 2023-07-24+02:00 + Carbomerum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0262 + + + + CON-0263 + 2023-07-24+02:00 + Naloxoni hydrochloridum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0263 + + + + CON-0264 + 2023-07-24+02:00 + Protamini sulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0264 + + + + CON-0265 + 2023-07-24+02:00 + Natrii thiosulfas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0265 + + + + CON-0266 + 2023-07-24+02:00 + Bleu patente + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0266 + + + + CON-0267 + 2023-07-24+02:00 + Haemoderivatum deproteinatum sanguinis bovi + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0267 + + + + CON-0268 + 2023-07-24+02:00 + Aqua destillata + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0268 + + + + CON-0269 + 2023-07-24+02:00 + Aqua destillata + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0269 + + + + CON-0270 + 2023-07-24+02:00 + Aqua destillata + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0270 + + + + CON-0271 + 2023-07-24+02:00 + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0271 + + + + CON-0272 + 2023-07-24+02:00 + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0272 + + + + CON-0273 + 2023-07-24+02:00 + Iopamidolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0273 + + + + CON-0274 + 2023-07-24+02:00 + Gadobutrolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0274 + + + + CON-0275 + 2023-07-24+02:00 + Gadobutrolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0275 + + + + CON-0276 + 2023-07-24+02:00 + Gadobutrolum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0276 + + + + CON-0277 + 2023-07-24+02:00 + Iopromidum + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0277 + + + + CON-0278 + 2023-07-24+02:00 + Dinatrii gadoxetas + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0278 + + + + CON-0279 + 2023-07-24+02:00 + Granulēts aktivēts sorbents (sorbex) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0279 + + + + CON-0280 + 2023-07-24+02:00 + Spiritus aethylicus 960 + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0280 + + + + CON-0281 + 2023-07-24+02:00 + Tinctura Leonuri + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0281 + + + + CON-0282 + 2023-07-24+02:00 + TincturaValerianae + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0282 + + + + CON-0283 + 2023-07-24+02:00 + Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0283 + + + + CON-0284 + 2023-07-24+02:00 + Prontosan -Sastāvā 0,1% undecilēnamidopropilbetaīns, 0,1% poliamīnopropilbiguanīds (poliheksanīds).Nekairinošs, nesausinošs, piemērots atkārtotai un ilgstošai lietošanai. Flakonu iespējams izmantot astoņas nedēļas pēc tā atvēršanas. + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0284 + + + + CON-0285 + 2023-07-24+02:00 + Enterālās barošanas līdzekļi + https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + TEN-0285 + + + + TPA-0001 + + ORG-0003 + + + + TPA-0002 + + ORG-0004 + + + + TPA-0003 + + ORG-0005 + + + + TPA-0004 + + ORG-0006 + + + + TPA-0005 + + ORG-0007 + + + + TPA-0006 + + ORG-0008 + + + + TPA-0007 + + ORG-0009 + + + + TPA-0008 + + ORG-0010 + + + + TPA-0009 + + ORG-0011 + + + + TPA-0010 + + ORG-0012 + + + + TPA-0011 + + ORG-0013 + + + + TPA-0012 + + ORG-0014 + + + + TPA-0013 + + ORG-0015 + + + + TPA-0014 + + ORG-0016 + + + + TPA-0015 + + ORG-0017 + + + + TPA-0016 + + ORG-0018 + + + + TPA-0017 + + ORG-0019 + + + + TPA-0018 + + ORG-0020 + + + + TPA-0019 + + ORG-0021 + + + + TPA-0020 + + ORG-0022 + + + + TPA-0021 + + ORG-0023 + + + + TPA-0022 + + ORG-0024 + + + + TPA-0023 + + ORG-0025 + + + + TPA-0024 + + ORG-0026 + + + + TPA-0025 + + ORG-0027 + + + + TPA-0026 + + ORG-0028 + + + + TPA-0027 + + ORG-0029 + + + + TPA-0028 + + ORG-0030 + + + + TPA-0029 + + ORG-0031 + + + + TPA-0030 + + ORG-0032 + + + + TPA-0031 + + ORG-0033 + + + + TPA-0032 + + ORG-0034 + + + + TPA-0033 + + ORG-0035 + + + + TPA-0034 + + ORG-0036 + + + + TPA-0035 + + ORG-0037 + + + + TPA-0036 + + ORG-0038 + + + + TPA-0037 + + ORG-0039 + + + + TPA-0038 + + ORG-0040 + + + + TPA-0039 + + ORG-0041 + + + + TPA-0040 + + ORG-0042 + + + + TPA-0041 + + ORG-0043 + + + + TPA-0042 + + ORG-0044 + + + + TPA-0043 + + ORG-0045 + + + + TPA-0044 + + ORG-0046 + + + + TPA-0045 + + ORG-0047 + + + + TPA-0046 + + ORG-0048 + + + + TPA-0047 + + ORG-0049 + + + + TPA-0048 + + ORG-0050 + + + + TPA-0049 + + ORG-0051 + + + + TPA-0050 + + ORG-0052 + + + + TPA-0051 + + ORG-0053 + + + + TPA-0052 + + ORG-0054 + + + + TPA-0053 + + ORG-0055 + + + + TPA-0054 + + ORG-0056 + + + + TPA-0055 + + ORG-0057 + + + + TPA-0056 + + ORG-0058 + + + + TPA-0057 + + ORG-0059 + + + + TPA-0058 + + ORG-0060 + + + + TPA-0059 + + ORG-0061 + + + + TPA-0060 + + ORG-0062 + + + + TPA-0061 + + ORG-0063 + + + + TPA-0062 + + ORG-0064 + + + + TPA-0063 + + ORG-0065 + + + + TPA-0064 + + ORG-0066 + + + + TPA-0065 + + ORG-0067 + + + + TPA-0066 + + ORG-0068 + + + + TPA-0067 + + ORG-0069 + + + + TPA-0068 + + ORG-0070 + + + + TPA-0069 + + ORG-0071 + + + + TPA-0070 + + ORG-0072 + + + + TPA-0071 + + ORG-0073 + + + + TPA-0072 + + ORG-0074 + + + + TPA-0073 + + ORG-0075 + + + + TPA-0074 + + ORG-0076 + + + + TPA-0075 + + ORG-0077 + + + + TPA-0076 + + ORG-0078 + + + + TPA-0077 + + ORG-0079 + + + + TPA-0078 + + ORG-0080 + + + + TPA-0079 + + ORG-0081 + + + + TPA-0080 + + ORG-0082 + + + + TPA-0081 + + ORG-0083 + + + + TPA-0082 + + ORG-0084 + + + + TPA-0083 + + ORG-0085 + + + + TPA-0084 + + ORG-0086 + + + + TPA-0085 + + ORG-0087 + + + + TPA-0086 + + ORG-0088 + + + + TPA-0087 + + ORG-0089 + + + + TPA-0088 + + ORG-0090 + + + + TPA-0089 + + ORG-0091 + + + + TPA-0090 + + ORG-0092 + + + + TPA-0091 + + ORG-0093 + + + + TPA-0092 + + ORG-0094 + + + + TPA-0093 + + ORG-0095 + + + + TPA-0094 + + ORG-0096 + + + + TPA-0095 + + ORG-0097 + + + + TPA-0096 + + ORG-0098 + + + + TPA-0097 + + ORG-0099 + + + + TPA-0098 + + ORG-0100 + + + + TPA-0099 + + ORG-0101 + + + + TPA-0100 + + ORG-0102 + + + + TPA-0101 + + ORG-0103 + + + + TPA-0102 + + ORG-0104 + + + + TPA-0103 + + ORG-0105 + + + + TPA-0104 + + ORG-0106 + + + + TPA-0105 + + ORG-0107 + + + + TPA-0106 + + ORG-0108 + + + + TPA-0107 + + ORG-0109 + + + + TPA-0108 + + ORG-0110 + + + + TPA-0109 + + ORG-0111 + + + + TPA-0110 + + ORG-0112 + + + + TPA-0111 + + ORG-0113 + + + + TPA-0112 + + ORG-0114 + + + + TPA-0113 + + ORG-0115 + + + + TPA-0114 + + ORG-0116 + + + + TPA-0115 + + ORG-0117 + + + + TPA-0116 + + ORG-0118 + + + + TPA-0117 + + ORG-0119 + + + + TPA-0118 + + ORG-0120 + + + + TPA-0119 + + ORG-0121 + + + + TPA-0120 + + ORG-0122 + + + + TPA-0121 + + ORG-0123 + + + + TPA-0122 + + ORG-0124 + + + + TPA-0123 + + ORG-0125 + + + + TPA-0124 + + ORG-0126 + + + + TPA-0125 + + ORG-0127 + + + + TPA-0126 + + ORG-0128 + + + + TPA-0127 + + ORG-0129 + + + + TPA-0128 + + ORG-0130 + + + + TPA-0129 + + ORG-0131 + + + + TPA-0130 + + ORG-0132 + + + + TPA-0131 + + ORG-0133 + + + + TPA-0132 + + ORG-0134 + + + + TPA-0133 + + ORG-0135 + + + + TPA-0134 + + ORG-0136 + + + + TPA-0135 + + ORG-0137 + + + + TPA-0136 + + ORG-0138 + + + + TPA-0137 + + ORG-0139 + + + + TPA-0138 + + ORG-0140 + + + + TPA-0139 + + ORG-0141 + + + + TPA-0140 + + ORG-0142 + + + + TPA-0141 + + ORG-0143 + + + + TPA-0142 + + ORG-0144 + + + + TPA-0143 + + ORG-0145 + + + + TPA-0144 + + ORG-0146 + + + + TPA-0145 + + ORG-0147 + + + + TPA-0146 + + ORG-0148 + + + + TPA-0147 + + ORG-0149 + + + + TPA-0148 + + ORG-0150 + + + + TPA-0149 + + ORG-0151 + + + + TPA-0150 + + ORG-0152 + + + + TPA-0151 + + ORG-0153 + + + + TPA-0152 + + ORG-0154 + + + + TPA-0153 + + ORG-0155 + + + + TPA-0154 + + ORG-0156 + + + + TPA-0155 + + ORG-0157 + + + + TPA-0156 + + ORG-0158 + + + + TPA-0157 + + ORG-0159 + + + + TPA-0158 + + ORG-0160 + + + + TPA-0159 + + ORG-0161 + + + + TPA-0160 + + ORG-0162 + + + + TPA-0161 + + ORG-0163 + + + + TPA-0162 + + ORG-0164 + + + + TPA-0163 + + ORG-0165 + + + + TPA-0164 + + ORG-0166 + + + + TPA-0165 + + ORG-0167 + + + + TPA-0166 + + ORG-0168 + + + + TPA-0167 + + ORG-0169 + + + + TPA-0168 + + ORG-0170 + + + + TPA-0169 + + ORG-0171 + + + + TPA-0170 + + ORG-0172 + + + + TPA-0171 + + ORG-0173 + + + + TPA-0172 + + ORG-0174 + + + + TPA-0173 + + ORG-0175 + + + + TPA-0174 + + ORG-0176 + + + + TPA-0175 + + ORG-0177 + + + + TPA-0176 + + ORG-0178 + + + + TPA-0177 + + ORG-0179 + + + + TPA-0178 + + ORG-0180 + + + + TPA-0179 + + ORG-0181 + + + + TPA-0180 + + ORG-0182 + + + + TPA-0181 + + ORG-0183 + + + + TPA-0182 + + ORG-0184 + + + + TPA-0183 + + ORG-0185 + + + + TPA-0184 + + ORG-0186 + + + + TPA-0185 + + ORG-0187 + + + + TPA-0186 + + ORG-0188 + + + + TPA-0187 + + ORG-0189 + + + + TPA-0188 + + ORG-0190 + + + + TPA-0189 + + ORG-0191 + + + + TPA-0190 + + ORG-0192 + + + + TPA-0191 + + ORG-0193 + + + + TPA-0192 + + ORG-0194 + + + + TPA-0193 + + ORG-0195 + + + + TPA-0194 + + ORG-0196 + + + + TPA-0195 + + ORG-0197 + + + + TPA-0196 + + ORG-0198 + + + + TPA-0197 + + ORG-0199 + + + + TPA-0198 + + ORG-0200 + + + + TPA-0199 + + ORG-0201 + + + + TPA-0200 + + ORG-0202 + + + + TPA-0201 + + ORG-0203 + + + + TPA-0202 + + ORG-0204 + + + + TPA-0203 + + ORG-0205 + + + + TPA-0204 + + ORG-0206 + + + + TPA-0205 + + ORG-0207 + + + + TPA-0206 + + ORG-0208 + + + + TPA-0207 + + ORG-0209 + + + + TPA-0208 + + ORG-0210 + + + + TPA-0209 + + ORG-0211 + + + + TPA-0210 + + ORG-0212 + + + + TPA-0211 + + ORG-0213 + + + + TPA-0212 + + ORG-0214 + + + + TPA-0213 + + ORG-0215 + + + + TPA-0214 + + ORG-0216 + + + + TPA-0215 + + ORG-0217 + + + + TPA-0216 + + ORG-0218 + + + + TPA-0217 + + ORG-0219 + + + + TPA-0218 + + ORG-0220 + + + + TPA-0219 + + ORG-0221 + + + + TPA-0220 + + ORG-0222 + + + + TPA-0221 + + ORG-0223 + + + + TPA-0222 + + ORG-0224 + + + + TPA-0223 + + ORG-0225 + + + + TPA-0224 + + ORG-0226 + + + + TPA-0225 + + ORG-0227 + + + + TPA-0226 + + ORG-0228 + + + + TPA-0227 + + ORG-0229 + + + + TPA-0228 + + ORG-0230 + + + + TPA-0229 + + ORG-0231 + + + + TPA-0230 + + ORG-0232 + + + + TPA-0231 + + ORG-0233 + + + + TPA-0232 + + ORG-0234 + + + + TPA-0233 + + ORG-0235 + + + + TPA-0234 + + ORG-0236 + + + + TPA-0235 + + ORG-0237 + + + + TPA-0236 + + ORG-0238 + + + + TPA-0237 + + ORG-0239 + + + + TPA-0238 + + ORG-0240 + + + + TPA-0239 + + ORG-0241 + + + + TPA-0240 + + ORG-0242 + + + + TPA-0241 + + ORG-0243 + + + + TPA-0242 + + ORG-0244 + + + + TPA-0243 + + ORG-0245 + + + + TPA-0244 + + ORG-0246 + + + + TPA-0245 + + ORG-0247 + + + + TPA-0246 + + ORG-0248 + + + + TPA-0247 + + ORG-0249 + + + + TPA-0248 + + ORG-0250 + + + + TPA-0249 + + ORG-0251 + + + + TPA-0250 + + ORG-0252 + + + + TPA-0251 + + ORG-0253 + + + + TPA-0252 + + ORG-0254 + + + + TPA-0253 + + ORG-0255 + + + + TPA-0254 + + ORG-0256 + + + + TPA-0255 + + ORG-0257 + + + + TPA-0256 + + ORG-0258 + + + + TPA-0257 + + ORG-0259 + + + + TPA-0258 + + ORG-0260 + + + + TPA-0259 + + ORG-0261 + + + + TPA-0260 + + ORG-0262 + + + + TPA-0261 + + ORG-0263 + + + + TPA-0262 + + ORG-0264 + + + + TPA-0263 + + ORG-0265 + + + + TPA-0264 + + ORG-0266 + + + + TPA-0265 + + ORG-0267 + + + + TPA-0266 + + ORG-0268 + + + + TPA-0267 + + ORG-0269 + + + + TPA-0268 + + ORG-0270 + + + + TPA-0269 + + ORG-0271 + + + + TPA-0270 + + ORG-0272 + + + + TPA-0271 + + ORG-0273 + + + + TPA-0272 + + ORG-0274 + + + + TPA-0273 + + ORG-0275 + + + + TPA-0274 + + ORG-0276 + + + + TPA-0275 + + ORG-0277 + + + + TPA-0276 + + ORG-0278 + + + + TPA-0277 + + ORG-0279 + + + + TPA-0278 + + ORG-0280 + + + + TPA-0279 + + ORG-0281 + + + + TPA-0280 + + ORG-0282 + + + + TPA-0281 + + ORG-0283 + + + + TPA-0282 + + ORG-0284 + + + + TPA-0283 + + ORG-0285 + + + + TPA-0284 + + ORG-0286 + + + + TPA-0285 + + ORG-0287 + + + + + 29 + + + + + https://www.1slimnica.lv/lv/ + + ORG-0001 + + + SIA “Rīgas 1.slimnīca” + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + 40003439279 + + + SIA "Rīgas 1.slimnīca" + +37129439144 + martins.pukinskis@1slimnica.lv + + + + + false + + + ORG-0003 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0004 + + + SIA "Oribalt Rīga" + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0005 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0006 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0007 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0008 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0009 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0010 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0011 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0012 + + + SIA “Aniss” + + + Ulbrokas iela 19A + Rīga + LV-1021 + LV006 + + LVA + + + + 40103098468 + + + +37167242233 + info@aniss.lv + + + + + false + + + ORG-0013 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0014 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0015 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0016 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0017 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0018 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0019 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0020 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0021 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0022 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0023 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0024 + + + SIA „Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0025 + + + SIA „Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0026 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0027 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0028 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0029 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0030 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0031 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0032 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0033 + + + SIA „Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0034 + + + SIA „Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0035 + + + SIA „Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0036 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0037 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0038 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0039 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0040 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0041 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0042 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0043 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0044 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0045 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0046 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0047 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0048 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0049 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0050 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0051 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0052 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0053 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0054 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0055 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0056 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0057 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0058 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0059 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0060 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0061 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0062 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0063 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0064 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0065 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0066 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0067 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0068 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0069 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0070 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0071 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0072 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0073 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0074 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0075 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0076 + + + SIA “Unikmed Baltija” + + + Ģertrūdes iela 33/35 – 2 + Rīga + LV-1011 + LV006 + + LVA + + + + 40203040440 + + + +37128625172 + roman@umb.lv + + + + + false + + + ORG-0077 + + + SIA “Unikmed Baltija” + + + Ģertrūdes iela 33/35 – 2 + Rīga + LV-1011 + LV006 + + LVA + + + + 40203040440 + + + +37128625172 + roman@umb.lv + + + + + false + + + ORG-0078 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0079 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0080 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0081 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0082 + + + AS “Olainfarm” + + + Rūpnīcu iela 5 + Olaine + LV-2114 + LV006 + + LVA + + + + 40003007246 + + + +37129237033 + aigars.enins@olainfarm.com + + + + + false + + + ORG-0083 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0084 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0085 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0086 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0087 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0088 + + + AS “Olainfarm” + + + Rūpnīcu iela 5 + Olaine + LV-2114 + LV006 + + LVA + + + + 40003007246 + + + +37129237033 + aigars.enins@olainfarm.com + + + + + false + + + ORG-0089 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0090 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0091 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0092 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0093 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0094 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0095 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0096 + + + AS “Olainfarm” + + + Rūpnīcu iela 5 + Olaine + LV-2114 + LV006 + + LVA + + + + 40003007246 + + + +37129237033 + aigars.enins@olainfarm.com + + + + + false + + + ORG-0097 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0098 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0099 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0100 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0101 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0102 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0103 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0104 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0105 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0106 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0107 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0108 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0109 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0110 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0111 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0112 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0113 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0114 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0115 + + + SIA “Aniss” + + + Ulbrokas iela 19A + Rīga + LV-1021 + LV006 + + LVA + + + + 40103098468 + + + +37167242233 + info@aniss.lv + + + + + false + + + ORG-0116 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0117 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0118 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0119 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0120 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0121 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0122 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0123 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0124 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0125 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0126 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0127 + + + AS “Recipe Plus” + + + Mūkusalas iela 41 + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0128 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0129 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0130 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0131 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0132 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0133 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0134 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0135 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0136 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0137 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0138 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0139 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0140 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0141 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0142 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0143 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0144 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0145 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0146 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0147 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0148 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0149 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0150 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0151 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0152 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0153 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0154 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0155 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0156 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0157 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0158 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0159 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0160 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0161 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0162 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0163 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0164 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0165 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0166 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0167 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0168 + + + SIA “Vakcīna” + + + Lielvārdes iela 68 + Rīga + LV-1006 + LV006 + + LVA + + + + 40003551465 + + + +37167582948 + marite@vakcinas.lv + + + + + false + + + ORG-0169 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0170 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0171 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0172 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0173 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0174 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0175 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0176 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0177 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0178 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0179 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0180 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0181 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0182 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0183 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0184 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0185 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0186 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0187 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0188 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0189 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0190 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0191 + + + SIA “Unifarma" + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0192 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0193 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0194 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B, Rīga, LV-1004 + Rīga + Rīga + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0195 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV006 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0196 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0197 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0198 + + + SIA “A.Medical” + + + arkaļu iela 13a + Rīga + LV-1067 + LV006 + + LVA + + + + 40103599415 + + + +37125458388 + info@amedical.eu + + + + + false + + + ORG-0199 + + + SIA “Elvim” + + + Kurzemes prospekts 3G + Rīga + LV-1067 + LV006 + + LVA + + + + 40103040641 + + + +37167408858 + market@elvim.lv + + + + + false + + + ORG-0200 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV006 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0201 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0202 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0203 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0204 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0205 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0206 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0207 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0208 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0209 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0210 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0211 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0212 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV003 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0213 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV003 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0214 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0215 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV003 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0216 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0217 + + + AS “Recipe Plus” + + + ūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0218 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0219 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0220 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV003 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0221 + + + SIA “Elpis” + + + Rāmuļu iela 15 + Rīga + LV-1005 + LV003 + + LVA + + + + 40103114438 + + + +37167517693 + med@elpis.lv + + + + + false + + + ORG-0222 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0223 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0224 + + + SIA “Unifarma” + + + Vangažu iela 23 + Rīga + LV-1024 + LV003 + + LVA + + + + 40003472521 + + + +37167514388 + tatjana.irgulska@unifarma.lv + + + + + false + + + ORG-0225 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0226 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0227 + + + SIA “A.Medical” + + + Varkaļu iela 13a + Rīga + LV-1067 + LV003 + + LVA + + + + 40103599415 + + + +37125458388 + info@amedical.eu + + + + + false + + + ORG-0228 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0229 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0230 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0231 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0232 + + + AS “Olainfarm” + + + Rūpnīcu iela 5 + Olaine + LV-2114 + LV003 + + LVA + + + + 40003007246 + + + +37167013803 + aigars.enins@olainfarm.com + + + + + false + + + ORG-0233 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0234 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0235 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0236 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0237 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0238 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0239 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0240 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0241 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0242 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0243 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV003 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0244 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0245 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV003 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0246 + + + AS “Olainfarm” + + + Rūpnīcu iela 5 + Olaine + LV-2114 + LV003 + + LVA + + + + 40003007246 + + + +37167013803 + aigars.enins@olainfarm.com + + + + + false + + + ORG-0247 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0248 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV003 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0249 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0250 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0251 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0252 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0253 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0254 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0255 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0256 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0257 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0258 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + false + + + ORG-0259 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0260 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0261 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0262 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0263 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0264 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0265 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0266 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0267 + + + SIA “Aniss” + + + Ulbrokas iela 19A + Rīga + LV-1021 + LV006 + + LVA + + + + 40103098468 + + + +37167242233 + info@aniss.lv + + + + + false + + + ORG-0268 + + + SIA “Signamed” + + + Brīvības gatve 226 k-2 + Rīga + LV-1039 + LV006 + + LVA + + + + 40003926635 + + + +37167436344 + vineta.vucane@signamed.lv + + + + + false + + + ORG-0269 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0270 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0271 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0272 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0273 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0274 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0275 + + + SIA “A.Medical” + + + Varkaļu iela 13a + Rīga + LV-1067 + LV006 + + LVA + + + + 40103599415 + + + +37125458388 + info@amedical.eu + + + + + false + + + ORG-0276 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0277 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0278 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0279 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0280 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0281 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0282 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0283 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0284 + + + AS “Recipe Plus” + + + Mūkusalas iela 41B + Rīga + LV-1004 + LV006 + + LVA + + + + 40003234547 + + + +37167626532 + dzintra.dubinska@recipe.lv + + + + + false + + + ORG-0285 + + + SIA “Magnum Medical” + + + Ulbrokas iela 23 + Rīga + LV-1021 + LV006 + + LVA + + + + 40003060393 + + + +37167718748 + ilona.rukke@magnum.lv + + + + + false + + + ORG-0286 + + + SIA “B.Braun Medical” + + + Ūdeļu iela 16 + Rīga + LV-1064 + LV006 + + LVA + + + + 40003277955 + + + +37167819549 + info.lv@bbraun.com + + + + + false + + + ORG-0287 + + + SIA “Oribalt Rīga” + + + Dzirnieku iela 26 + Mārupe + LV-2167 + LV006 + + LVA + + + + 50003199991 + + + +37167840822 + riga@oribalt.com + + + + + + https://www.iub.gov.lv + https://www.eis.gov.lv/EKEIS/Supplier/Organizer/472 + + ORG-0002 + + + Iepirkumu uzraudzības birojs + + + Smilšu iela 1 + Rīga + LV-1919 + LV006 + + LVA + + + + 90001263305 + + + Juridiskais departaments + +37122416641 + pasts@iub.gov.lv + + + + + + 00177148-2024 + 60/2024 + 2024-03-25Z + + + + + + 2.3 + eforms-sdk-1.10 + e1e0a80a-6a9e-42f4-ae18-e2b8bd91bbde + e7902ce8-a88b-4470-9d0e-f4ae0729370c + 2024-03-22Z + 15:29:59Z + 01 + 32014L0024 + can-standard + LAV + + + pub-undert-la + + + health + + + + ORG-0001 + + + + + + https://eur-lex.europa.eu/eli/dir/2014/24/oj + + + + open + + false + + + + R1S 2023/17-IEP + Medikamentu iegāde + Medikamentu iegāde + supplies + + 33000000 + + + + LOT-0001 + + no-eu-funds + + + + + + + + + ord-imp + 0 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP1 + Polidocanolum, Dialysatum deproteinatum sanguinis vituli + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0002 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP2 + Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0003 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP3 + Lidocaini hydrochloridum, Matricariae extractum fluidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0004 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP4 + Omeprazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0005 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP5 + Pantoprazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0006 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP6 + Drotaverini hydrochlorium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0007 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP7 + Atropini sulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0008 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP8 + Butylscopolamini bromidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0009 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP9 + Metoclopramidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0010 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP10 + Ondansetronum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0011 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP11 + Bisacodilum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0012 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP12 + Lactulosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0013 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP13 + Sorbitolum, Natrii citras, Natrii laurilsulfoacetas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0014 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP14 + Loperamidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0015 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP15 + Insulinum lispro - ātras darbības insulīni, to analogi + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0016 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP16 + Insulinum aspartum - ātras darbības insulīni, to analogi + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0017 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP17 + Insulinum glarginum - garas darbības insulīni, to analogi + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0018 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP18 + Metformini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0019 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP19 + Metformini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0020 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP20 + Thiamini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0021 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP21 + Pyridoxini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0022 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP22 + Calcii gluconas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0023 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP23 + Heparinum natricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0024 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP24 + Heparinum natricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0025 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP25 + Bemiparinum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0026 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP26 + Bemiparinum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0027 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP27 + Nadroparinum calcicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0028 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP28 + Nadroparinum calcicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0029 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP29 + Acidum acetylsalicylicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0030 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP30 + Rivaroxabanum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0031 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP31 + Etamsylatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0032 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP32 + Acidum tranexamicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0033 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP33 + Fibrinogenum humanum, Thrombinum humanum, 4,8cm*4,8cm *0,5cm + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0034 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP34 + Phytomenadionum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0035 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP35 + Phytomenadionum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0036 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP36 + Cyanocobolaminum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0037 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP37 + *Elektrolītu šķīdums (Ringera) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0038 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP38 + **Elektrolītu šķīdums (Ringera) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0039 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP39 + *Elektrolītu šķīdums (Ringera) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0040 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP40 + **Elektrolītu šķīdums (Ringera) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0041 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP41 + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0042 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP42 + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0043 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP43 + *Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0044 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP44 + **Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0045 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP45 + *Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0046 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP46 + **Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0047 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP47 + *Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0048 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP48 + Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0049 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP49 + Glucosum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0050 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP50 + Gelatinum succinas, Natrii chloridum, Natrii hydroxidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0051 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP51 + Central emulsija infūzijām + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0052 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP52 + Peripheral emulsija infūzijām + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0053 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP53 + *Mannitolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0054 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP54 + Kalii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0055 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP55 + Kalii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0056 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP56 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0057 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP57 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0058 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP58 + *Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0059 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP59 + **Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0060 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP60 + *Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0061 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP61 + **Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0062 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP62 + *Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0063 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP63 + **Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0064 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP64 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0065 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP65 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0066 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP66 + *Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0067 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP67 + **Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0068 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP68 + **Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0069 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP69 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0070 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP70 + Natrii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0071 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP71 + Natrii hydrocarbonas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0072 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP72 + Natrii hydrocarbonas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0073 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP73 + Magnesii sulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0074 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP74 + Digoxinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0075 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP75 + Amiodaronum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0076 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP76 + Norepinephrinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0077 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP77 + Ephedrini hydrohloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0078 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP78 + Dopamini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0079 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP79 + Dobutaminum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0080 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP80 + Epinephrinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0081 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP81 + Glyceroli trinitras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0082 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP82 + Glyceroli trinitras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0083 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP83 + Meldonium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0084 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP84 + Adenosinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0085 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP85 + Ivabradinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0086 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP86 + Clonidinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0087 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP87 + Clonidinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0088 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP88 + Furosemidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0089 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP89 + Furosemidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0090 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP90 + Torasemidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0091 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP91 + Spironolactonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0092 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP92 + Pentoxifyllinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0093 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP93 + Xylocain + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0094 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP94 + Xylocain + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0095 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP95 + Troxerutinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0096 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP96 + Polidocanolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0097 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP97 + Propranololum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0098 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP98 + Metoprololi tartras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0099 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP99 + Bisoprololi fumaras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0100 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP100 + Nebivololum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0101 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP101 + Labetalolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0102 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP102 + Amlodipinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0103 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP103 + Nitrendipinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0104 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP104 + Verapamili hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0105 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP105 + Captoprilum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0106 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP106 + Enalaprilum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0107 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP107 + Enalaprilatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0108 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP108 + Perindoprili argininum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0109 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP109 + Isoconazoli nitras, Diflucortoloni valeras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0110 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP110 + Zinci oxydum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0111 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP111 + Sulfathiazolum argentum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0112 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP112 + Dexpanthenolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0113 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP113 + Dexpanthenolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0114 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP114 + Acidum fusidicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0115 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP115 + Acidum fusidicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0116 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP116 + Methyluracilum, Lidocainum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0117 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP117 + Methyluracilum, Chloramphenicolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0118 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP118 + Hydrocortisonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0119 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP119 + Fluocinoloni acetonidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0120 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP120 + Fluocinoloni acetonidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0121 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP121 + Acidum boricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0122 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP122 + Povidonum iodinatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0123 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP123 + Povidonum iodinatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0124 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP124 + Iodum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0125 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP125 + Viride nitens, sp.aethylicus + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0126 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP126 + Hydrogenii peroxidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0127 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP127 + E vitamīna acetāts, bišu vasks + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0128 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP128 + Desmopressinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0129 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP129 + Oxytocinumum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0130 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP130 + Octreotidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0131 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP131 + Dexamethasonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0132 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP132 + Dexamethasonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0133 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP133 + Methylprednisoloni acetas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0134 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP134 + Methylprednisolonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0135 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP135 + Methylprednisolonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0136 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP136 + Prednisolonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0137 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP137 + Hydrocortisonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0138 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP138 + Triamcinoloni acetonidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0139 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP139 + Thiamazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0140 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP140 + Doxycyclinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0141 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP141 + Amoxicillinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0142 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP142 + Benzylpencillinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0143 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP143 + Amoxicillinum / Acidum clavulanicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0144 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP144 + Piperacillinum / Tazobactamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0145 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP145 + Cefazolinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0146 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP146 + Ceftriaxonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0147 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP147 + Imipenemum / Cilastatinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0148 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP148 + Sulfamethoxazolum, Trimethoprimum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0149 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP149 + Sulfamethoxazolum / Trimethoprimum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0150 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP150 + Erythromycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0151 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP151 + Erythromycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0152 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP152 + Erythromycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0153 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP153 + Gentamicinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0154 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP154 + Ciprofloxacinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0155 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP155 + Ciprofloxacinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0156 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP156 + Ciprofloxacinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0157 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP157 + Metronidazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0158 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP158 + Furaginum solubile + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0159 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP159 + Fluconazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0160 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP160 + Vaccinum encephalitidis ixodibus advectae inactivatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0161 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP161 + Vaccinum encephalitidis ixodibus advectae inactivatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0162 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP162 + Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0163 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP163 + Viri hepatitidis A inactivatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0164 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP164 + Vaccinum hepatitidis A inactivatum adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0165 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP165 + Vaccinum hepatitidis B (ADNr) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0166 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP166 + Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0167 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP167 + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0168 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP168 + Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0169 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP169 + Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0170 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP170 + Viri rabiei inactivatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0171 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP171 + Vaccinum diphtheriae et tetani adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0172 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP172 + Vaccinum morbillorum, parotitidis et rubellae vivum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0173 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP173 + Vaccinum varicellae vivum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0174 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP174 + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0175 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP175 + Vaccinum rotaviri vivum perorale + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0176 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP176 + Methotrexatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0177 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP177 + Mitomycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0178 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP178 + Doxorubicinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0179 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP179 + Diclofenacum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0180 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP180 + Diclofenacum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0181 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP181 + Diclofenacum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0182 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP182 + Diclofenacum natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0183 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP183 + Ketorolaci trometamolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0184 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP184 + Ibuprofenum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0185 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP185 + Dexketoprofenum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0186 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP186 + Dexketoprofenum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0187 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP187 + Etoricoxibum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0188 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP188 + Suxamethonii chloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0189 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP189 + Atracurii besilas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0190 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP190 + Atracurii besilas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0191 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP191 + Mivacurium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0192 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP192 + Cisatracurium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0193 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP193 + Toxinum A Clostridii botulini haemagglutininum multiplex + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0194 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP194 + Tizanidinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0195 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP195 + Tolperisonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0196 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP196 + Sevofluranum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0197 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP197 + Thiopentalum natricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0198 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP198 + Natrii oxybutyras + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0199 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP199 + Ketamini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0200 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP200 + Etomidatum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0201 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP201 + Propofolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0202 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP202 + Propofolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0203 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP203 + Bupivacaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0204 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP204 + Bupivacaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0205 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP205 + Bupivacaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0206 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP206 + Ropivacaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0207 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP207 + Lidocaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0208 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP208 + Lidocaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0209 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP209 + Lidocaini hydrochloridum, Chlorhexidinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0210 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP210 + Prilocainum, Lidocainum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0211 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP211 + Morphini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0212 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP212 + Fentanylum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0213 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP213 + Trimeperidini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0214 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP214 + Tramadoli hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0215 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP215 + Tramadoli hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0216 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP216 + Tramadoli hydrochloridum, Dexketoprofenum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0217 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP217 + Paracetamolum, Codeini phosphas hemihydricus + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0218 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP218 + Sumatriptanum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0219 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP219 + Metamizolum natricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0220 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP220 + Metamizolum natricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0221 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP221 + Acidum acetylsalicylicum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0222 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP222 + Paracetamolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0223 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP223 + Paracetamolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0224 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP224 + Clonazepamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0225 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP225 + Gabapentinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0226 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP226 + Pregabalinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0227 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP227 + Carbamazepinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0228 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP228 + Trihexyphenidylum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0229 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP229 + Levodopum, Benserazidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0230 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP230 + Haloperidolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0231 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP231 + Haloperidolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0232 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP232 + Melperonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0233 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP233 + Droperidolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0234 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP234 + Diazepamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0235 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP235 + Diazepamum (iepakojumā tika pa N10 ampulām) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0236 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP236 + Bromazepamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0237 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP237 + Quetiapinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0238 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP238 + Midazolamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0239 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP239 + Midazolamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0240 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP240 + Chlorprotixenum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0241 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP241 + Amitriptylinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0242 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP242 + Piracetamum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0243 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP243 + Ipidacrinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0244 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP244 + Neostigmini methylsulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0245 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP245 + Metronidazolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0246 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP246 + Permethrinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0247 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP247 + Benzylii benzoas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0248 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP248 + Xylomethazolinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0249 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP249 + Xylomethazolinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0250 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP250 + Salbutamoli sulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0251 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP251 + Salbutamolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0252 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP252 + Salbutamolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0253 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP253 + Ipratropii bromidum, Fenoteroli hydrobromidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0254 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP254 + Ephedrini hydrohloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0255 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP255 + Aminophyllinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0256 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP256 + Clemastinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0257 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP257 + Chloropyraminum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0258 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP258 + Chloropyraminum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0259 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP259 + Quifenadini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0260 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP260 + Solutio Ammoniae concentrata + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0261 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP261 + Tobramycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0262 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP262 + Tobramycinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0263 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP263 + Acetazolamidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0264 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP264 + Moxifloxacinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0265 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP265 + Diclofenacum Natrium + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0266 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP266 + Tobramycinum, Dexamethasonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0267 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP267 + Tobramycinum, Dexamethasonum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0268 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP268 + Dexamethasonum, Chloramphenicolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0269 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP269 + Dexamethasonum, Chloramphenicolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0270 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP270 + Pilocarpinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0271 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP271 + Timololum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0272 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP272 + Timololum, Dorzolamidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0273 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP273 + Cyclopentolati hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0274 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP274 + Tropicamidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0275 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP275 + Phenylephrinum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0276 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP276 + Proxymetacaini hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0277 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP277 + Dexpanthenolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0278 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP278 + Carbomerum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0279 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP279 + Carbachol intaocular solution + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0280 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP280 + Carbacholin + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0281 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP281 + Naloxoni hydrochloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0282 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP282 + Protamini sulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0283 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP283 + Protamini hydrohloridum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0284 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP284 + Natrii thiosulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0285 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP285 + Bleu patente + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0286 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP286 + Haemoderivatum deproteinatum sanguinis bovi + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0287 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP287 + Aqua destillata + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0288 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP288 + Aqua destillata + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0289 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP289 + Aqua destillata + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0290 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP290 + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0291 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP291 + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0292 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP292 + Iohexolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0293 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP293 + Iohexolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0294 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP294 + Iohexolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0295 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP295 + Iopamidolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0296 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP296 + Gadobutrolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0297 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP297 + Gadobutrolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0298 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP298 + Gadobutrolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0299 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP299 + Iopromidum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0300 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP300 + Dinatrii gadoxetas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0301 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP301 + Granulēts aktivēts sorbents (sorbex) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0302 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP302 + Aether (iepakojums 250-1000 ml) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0303 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP303 + Spiritus aethylicus 960 + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0304 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP304 + Acidum boricum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0305 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP305 + Barium sulfas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0306 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP306 + Acidum aceticum conc.maks. iepakojums līdz 200 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0307 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP307 + Acidum hydrochloric. conc.maks. iepak.līdz 100 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0308 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP308 + Acidum nitotinicum maks. iepak.līdz 20g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0309 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP309 + Acidum salicylicum maks. iepak.līdz 1 kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0310 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP310 + Argenti nitras (maks. iepakojumā 10g-20g) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0311 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP311 + Anaesthesinum maks. iepak. līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0312 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP312 + Calcii chloridum maks. iepak. līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0313 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP313 + Chlorhexidini digluconas maks. iepak. līdz 1L pudelēs + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0314 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP314 + Dermatolum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0315 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP315 + Dicainum (Tetracainum) (maks. iepakojumā 10g-20g) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0316 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP316 + Extractum Thermopsidis maks. iepak. līdz 100g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0317 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP317 + Euphyllinum maks. iepak. līdz 20g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0318 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP318 + Furacillinum maks. iepak. līdz 20g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0319 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP319 + Formaldehydi (maks. iepakojumā līdz 1,5L pudelēs) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0320 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP320 + Glycerinum (maks. iepakojumā līz 1.5 L pudelēs) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0321 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP321 + Hydrogeni peroxyidi conc.maks. iepak. 1-5 L pudelēs + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0322 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP322 + Ichthyolum maks. iepak. līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0323 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP323 + Iodoformium maks. iepak. līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0324 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP324 + Kalii iodidi maks. iepak. līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0325 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP325 + Lanolinum maks. iepak. līdz 5 kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0326 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP326 + Laevomycetinum maks. iepak. līdz 20g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0327 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP327 + Methylviolet 1% 50 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0328 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP328 + Methylviolet 1% 100 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0329 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP329 + Methylviolet 2% 50 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0330 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP330 + Methylviolet 2% 100 ml + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0331 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP331 + Natrii acetas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0332 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP332 + Natrii benzoas maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0333 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP333 + Natrii bromidi maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0334 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP334 + Natrii chloridum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0335 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP335 + Natrii hydrocarbonas maks. iepak. līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0336 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP336 + Natrii salicylas + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0337 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP337 + Norsulfasolum + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0338 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP338 + Novocaini hydrochloridum maks. iepak.līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0339 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP339 + Oleum Helianthis maks. iepak.līdz 5kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0340 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP340 + Oleum Ricini maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0341 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP341 + Oleum Vaselini maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0342 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP342 + Oleum Olivarum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0343 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP343 + Oleum Caryophylli (maks. iepakojumā 10g-30g) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0344 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP344 + Pix liquda Betulae + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0345 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP345 + Streptocidum maks. iepak.līdz 100g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0346 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP346 + Sulfur praecipitatum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0347 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP347 + Sēra darvas ziede (pix qiquida 50g,sulfuris 50 g,vaselinum 900 g) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0348 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP348 + Talcum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0349 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP349 + Tinctura Leonuri + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0350 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP350 + Tinctura Valerianae + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0351 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP351 + Trilonum B maks. iepak.līdz 100g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0352 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP352 + Vaselinum maks. iepak.līdz 5kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0353 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP353 + Xeroformum maks. iepak.līdz 100g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0354 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP354 + Zinci oxydum maks. iepak.līdz 1kg + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0355 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP355 + Zinci sulfas maks. iepak.līdz 50g + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0356 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP356 + Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0357 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP357 + Prontosan -Sastāvā 0,1% undecilēnamidopropilbetaīns, 0,1% poliamīnopropilbiguanīds (poliheksanīds).Nekairinošs, nesausinošs, piemērots atkārtotai un ilgstošai lietošanai. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0358 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP358 + Kastellani liq. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0359 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP359 + Kastellani liq. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0360 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP360 + Kastellani liq.sine fuxini + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0361 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP361 + Kastellani liq.sine fuxini + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0362 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP362 + Flakoni -pudeles zāļu fasēšanai (penicilīna ar gumijas un metāla korķišiem) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0363 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP363 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0364 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP364 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0365 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP365 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0366 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP366 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0367 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP367 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0368 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP368 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0369 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP369 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0370 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP370 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0371 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP371 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0372 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP372 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0373 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP373 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0374 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP374 + Pudeles -stikls flakoni ( ar gumijas un alumīnija vāciņu valcēšanai) + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0375 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP375 + Alumīnija vāciņš (valcēšanai) infūzijas pudelēm + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0376 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP376 + Gumijas aizbāznis infūzijas pudelēm + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0377 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP377 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0378 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP378 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0379 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP379 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0380 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP380 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0381 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP381 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0382 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP382 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0383 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + none + + + none + + + + R1S 2023/17-IEP383 + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + LOT-0384 + + no-eu-funds + + + + + + + + + poi-exa + 100 + + + + + + price + Cena + Cena + + + + + + ORG-0001 + + + + + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + + + + ORG-0002 + + + + + + false + + false + + + fa-wo-rc + + + none + + + + R1S 2023/17-IEP384 + Enterālās barošanas līdzekļi + Medikamentu iegāde + supplies + + none + + + n-inc + + + 33000000 + + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV006 + + LVA + + + + + + + 2000-01-01Z + +